mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-12 10:52:08 +00:00
Add job to submit for App Review
This commit is contained in:
parent
12e8570fcb
commit
17b17fa255
29
.github/workflows/beta.yml
vendored
29
.github/workflows/beta.yml
vendored
@ -99,3 +99,32 @@ jobs:
|
|||||||
export PILOT_CHANGELOG=`ci/build-changelog.sh ios`
|
export PILOT_CHANGELOG=`ci/build-changelog.sh ios`
|
||||||
export PILOT_BUILD_NUMBER=`ci/build-number.sh`
|
export PILOT_BUILD_NUMBER=`ci/build-number.sh`
|
||||||
bundle exec fastlane --env ios,beta beta_deploy
|
bundle exec fastlane --env ios,beta beta_deploy
|
||||||
|
submit_for_app_review:
|
||||||
|
runs-on: macos-10.15
|
||||||
|
needs: submit_to_testflight
|
||||||
|
environment:
|
||||||
|
name: app_review
|
||||||
|
env:
|
||||||
|
DELIVER_USERNAME: ${{ secrets.DELIVER_USERNAME }}
|
||||||
|
steps:
|
||||||
|
- name: Check out repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
submodules: true
|
||||||
|
- name: Prepare Ruby bundle
|
||||||
|
uses: ruby/setup-ruby@v1
|
||||||
|
with:
|
||||||
|
bundler-cache: true
|
||||||
|
- name: Update App Store Connect metadata (macOS)
|
||||||
|
run: |
|
||||||
|
ci/update-asc-metadata.sh mac
|
||||||
|
- name: Update App Store Connect metadata (iOS)
|
||||||
|
run: |
|
||||||
|
ci/update-asc-metadata.sh ios
|
||||||
|
- name: Submit for App Review (macOS)
|
||||||
|
run: |
|
||||||
|
bundle exec fastlane --env mac store_review
|
||||||
|
- name: Submit for App Review (iOS)
|
||||||
|
run: |
|
||||||
|
bundle exec fastlane --env ios store_review
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 7b09e281671032e6b1460a51b101e9060f907624
|
Subproject commit 883b9fb9c230d872524ab29fbee0a3328776883f
|
Loading…
Reference in New Issue
Block a user