Bump mikepenz/action-junit-report from 6.4.0 to 6.4.1 in the actions … #224
This file contains hidden or 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: Nightlies | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: main | |
| jobs: | |
| deliver-demo-nightlies: | |
| name: 🌙 Nightlies | |
| runs-on: macos-26 | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| platform: [ios, tvos] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Add Apple certificate | |
| run: | | |
| Scripts/private/add-apple-certificate.sh \ | |
| $RUNNER_TEMP \ | |
| ${{ secrets.KEYCHAIN_PASSWORD }} \ | |
| ${{ secrets.APPLE_DEV_CERTIFICATE }} \ | |
| ${{ secrets.APPLE_DEV_CERTIFICATE_PASSWORD }} | |
| - name: Configure environment | |
| run: | | |
| Scripts/private/configure-environment.sh \ | |
| ${{ secrets.APP_STORE_CONNECT_API_KEY }} | |
| - name: Deliver the demo | |
| run: | | |
| Scripts/private/deliver-demo.sh -p ${{ matrix.platform }} -c nightly | |
| env: | |
| TEAM_ID: ${{ secrets.TEAM_ID }} | |
| KEY_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ID }} | |
| KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ISSUER_ID }} | |
| TESTFLIGHT_GROUPS: ${{ vars.TESTFLIGHT_GROUPS }} |