| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- name: 2. Add Identifiers
- run-name: Add Identifiers (${{ github.ref_name }})
- on:
- workflow_dispatch:
- jobs:
- validate:
- name: Validate
- uses: ./.github/workflows/validate_secrets.yml
- secrets: inherit
- identifiers:
- name: Add Identifiers
- needs: validate
- runs-on: macos-26
- steps:
- # Checks-out the repo
- - name: Checkout Repo
- uses: actions/checkout@v5
- # Patch Fastlane Match to not print tables
- - name: Patch Match Tables
- run: |
- TABLE_PRINTER_PATH=$(ruby -e 'puts Gem::Specification.find_by_name("fastlane").gem_dir')/match/lib/match/table_printer.rb
- if [ -f "$TABLE_PRINTER_PATH" ]; then
- sed -i "" "/puts(Terminal::Table.new(params))/d" "$TABLE_PRINTER_PATH"
- else
- echo "table_printer.rb not found"
- exit 1
- fi
- # Install project dependencies
- - name: Install Project Dependencies
- run: bundle install
- # Sync the GitHub runner clock with the Windows time server (workaround as suggested in https://github.com/actions/runner/issues/2996)
- - name: Sync clock
- run: sudo sntp -sS time.windows.com
- # Create or update identifiers for app
- - name: Fastlane Provision
- run: bundle exec fastlane identifiers
- env:
- TEAMID: ${{ secrets.TEAMID }}
- GH_PAT: ${{ secrets.GH_PAT }}
- MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
- FASTLANE_KEY_ID: ${{ secrets.FASTLANE_KEY_ID }}
- FASTLANE_ISSUER_ID: ${{ secrets.FASTLANE_ISSUER_ID }}
- FASTLANE_KEY: ${{ secrets.FASTLANE_KEY }}
|