Update build-and-test-ios-app.yml #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-and-test-ios-app | |
on: | |
push: | |
branches-ignore: | |
- main | |
- develop | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
build: | |
permissions: | |
contents: read | |
runs-on: [self-hosted, macOS] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set Path | |
run: | | |
echo "/opt/homebrew/bin:/Users/github-runner/.rbenv/shims:$PATH" >> $GITHUB_PATH | |
- name: Update Bundler | |
run: bundle update | |
- name: Check static code quality of iOS App | |
run: bundle exec fastlane swift_lint | |
# - name: Run Unit and UI Tests | |
# run: bundle exec fastlane test | |
- name: Run Fastlane match | |
run: bundle exec fastlane match appstore | |
env: | |
BUILD_NUMBER: ${{ github.run_number }} | |
IOS_MATCH_GITLAB_AUTH: ${{ secrets.IOS_MATCH_GITLAB_AUTH }} | |
IOS_KEYCHAIN_PASSWORD: ${{ secrets.IOS_KEYCHAIN_PASSWORD }} | |
IOS_APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.IOS_APP_STORE_CONNECT_API_KEY_KEY_ID }} | |
IOS_APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.IOS_APP_STORE_CONNECT_API_KEY_ISSUER_ID }} | |
IOS_APP_STORE_CONNECT_API_KEY_PASSWORD: ${{ secrets.IOS_APP_STORE_CONNECT_API_KEY_PASSWORD }} | |
MATCH_PASSWORD: ${{ secrets.IOS_MATCH_PASSWORD }} | |
- name: Debug code signing identities after match | |
run: security find-identity -v -p codesigning || echo "No identities found" | |
- name: Build iOS App | |
run: bundle exec fastlane build | |
env: | |
BUILD_NUMBER: ${{ github.run_number }} | |
IOS_MATCH_GITLAB_AUTH: ${{ secrets.IOS_MATCH_GITLAB_AUTH }} | |
IOS_KEYCHAIN_PASSWORD: ${{ secrets.IOS_KEYCHAIN_PASSWORD }} | |
IOS_APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.IOS_APP_STORE_CONNECT_API_KEY_KEY_ID }} | |
IOS_APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.IOS_APP_STORE_CONNECT_API_KEY_ISSUER_ID }} | |
IOS_APP_STORE_CONNECT_API_KEY_PASSWORD: ${{ secrets.IOS_APP_STORE_CONNECT_API_KEY_PASSWORD }} | |
MATCH_PASSWORD: ${{ secrets.IOS_MATCH_PASSWORD }} |