mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-09 12:08:31 -06:00
Merge branch '9-implement-playlist-crud' of github.com:anultravioletaurora/Jellify into 9-implement-playlist-crud
This commit is contained in:
18
.github/workflows/build-ios-app.yml
vendored
18
.github/workflows/build-ios-app.yml
vendored
@@ -8,16 +8,26 @@ jobs:
|
||||
build-ios-beta:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
- run: echo BUILD_NUMBER=$(node -p -e "require('./package.json').version") >> $GITHUB_ENV
|
||||
|
||||
- name: Echo package.json version to Github ENV
|
||||
run: echo BUILD_NUMBER=$(node -p -e "require('./package.json').version") >> $GITHUB_ENV
|
||||
|
||||
- run: npm run init
|
||||
|
||||
- name: Output App Store Connect API Key JSON to Fastlane
|
||||
run: echo "${{ secrets.APPSTORE_CONNECT_API_KEY_JSON }}" > appstore_connect_api_key.json
|
||||
working-directory: ./ios/fastlane
|
||||
|
||||
- run: fastlane beta
|
||||
working-directory: ./ios
|
||||
env:
|
||||
# FASTLANE_PASSWORD: ${{ secrets.FASTLANE_PASSWORD }}
|
||||
APPSTORE_CONNECT_API_KEY_JSON: ${{ secrets.APPSTORE_CONNECT_API_KEY_JSON }}
|
||||
FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD: ${{ secrets.FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD }}
|
||||
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
|
||||
MATCH_REPO_PAT: "anultravioletaurora:${{ secrets.SIGNING_REPO_PAT }}"
|
||||
working-directory: ./ios
|
||||
MATCH_REPO_PAT: "anultravioletaurora:${{ secrets.SIGNING_REPO_PAT }}"
|
||||
@@ -25,7 +25,7 @@ platform :ios do
|
||||
readonly: true
|
||||
)
|
||||
build_app(
|
||||
scheme: "Jellify"
|
||||
scheme: "Jellify",
|
||||
workspace: "Jellify.xcworkspace"
|
||||
)
|
||||
end
|
||||
@@ -47,7 +47,7 @@ platform :ios do
|
||||
)
|
||||
# http://docs.fastlane.tools/actions/upload_to_testflight/#upload_to_testflight
|
||||
upload_to_testflight(
|
||||
skip_waiting_for_build_processing: true # Required for App password support
|
||||
api_key_path: "fastlane/appstore_connect_api_key.json"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user