Release Pomodoro (beta) #11
Workflow file for this run
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: Test Amore Release | |
| run-name: Release Pomodoro ${{ (inputs.beta || github.ref != 'refs/heads/main') && '(beta)' || '' }} | |
| on: | |
| push: | |
| branches: ['**'] | |
| workflow_dispatch: | |
| inputs: | |
| beta: | |
| type: boolean | |
| default: false | |
| description: Publish as beta channel | |
| build-number: | |
| type: string | |
| default: timestamp | |
| description: Build number (integer or "timestamp") | |
| marketing-version: | |
| type: string | |
| default: "" | |
| description: Override marketing version (e.g. 1.0.1) | |
| concurrency: | |
| group: amore-release | |
| cancel-in-progress: false | |
| jobs: | |
| release: | |
| runs-on: macos-26 | |
| environment: prod | |
| # A stalled archive should fail fast with watchdog samples in the log, | |
| # not burn a 6h runner. | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/amore-release | |
| with: | |
| scheme: Pomodoro | |
| codesign-identity: ${{ secrets.CODESIGN_IDENTITY }} | |
| dev-id-cert-p12: ${{ secrets.DEV_ID_CERT_P12 }} | |
| dev-id-cert-password: ${{ secrets.DEV_ID_CERT_PASSWORD }} | |
| sparkle-private-key: ${{ secrets.SPARKLE_PRIVATE_KEY }} | |
| asc-api-key-id: ${{ secrets.ASC_API_KEY_ID }} | |
| asc-api-issuer: ${{ secrets.ASC_API_ISSUER }} | |
| asc-api-key: ${{ secrets.ASC_API_KEY }} | |
| amore-token: ${{ secrets.AMORE_TOKEN }} | |
| beta: ${{ (inputs.beta || github.ref != 'refs/heads/main') && 'true' || 'false' }} | |
| build-number: ${{ inputs.build-number }} | |
| marketing-version: ${{ inputs.marketing-version }} |