Reorganize scripts into subfolders
/ = Local scripts ci = Remote scripts (run by workflow) util = Utilities
This commit is contained in:
parent
894116269a
commit
20a6ba1dc3
|
@ -30,7 +30,7 @@ env:
|
||||||
APPCENTER_API_TOKEN: ${{ secrets.APPCENTER_API_TOKEN }}
|
APPCENTER_API_TOKEN: ${{ secrets.APPCENTER_API_TOKEN }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
submit_appstore:
|
upload_to_testflight:
|
||||||
runs-on: macos-10.15
|
runs-on: macos-10.15
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
steps:
|
steps:
|
||||||
|
@ -57,16 +57,16 @@ jobs:
|
||||||
${{ runner.os }}-pods-
|
${{ runner.os }}-pods-
|
||||||
- name: Prepare for fastlane match
|
- name: Prepare for fastlane match
|
||||||
run: |
|
run: |
|
||||||
scripts/recognize-match-hostname.sh
|
scripts/ci/recognize-match-hostname.sh
|
||||||
bundle exec fastlane preinstall_development_certs
|
bundle exec fastlane preinstall_development_certs
|
||||||
- name: Build (macOS)
|
- name: Build (macOS)
|
||||||
run: |
|
run: |
|
||||||
bundle exec fastlane --env mac,beta create_archive
|
bundle exec fastlane --env mac,beta create_archive
|
||||||
scripts/reset-archive.sh
|
scripts/ci/reset-archive.sh
|
||||||
- name: Build (iOS)
|
- name: Build (iOS)
|
||||||
run: |
|
run: |
|
||||||
bundle exec fastlane --env ios,beta create_archive
|
bundle exec fastlane --env ios,beta create_archive
|
||||||
scripts/reset-archive.sh
|
scripts/ci/reset-archive.sh
|
||||||
- name: Submit to TestFlight (macOS)
|
- name: Submit to TestFlight (macOS)
|
||||||
run: |
|
run: |
|
||||||
PILOT_CHANGELOG=`ci/build-changelog.sh mac` bundle exec fastlane --env mac,beta beta_deploy
|
PILOT_CHANGELOG=`ci/build-changelog.sh mac` bundle exec fastlane --env mac,beta beta_deploy
|
||||||
|
|
Loading…
Reference in New Issue