Canary release from main #1722
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: Canary release | |
run-name: Canary release from ${{ github.ref_name }} | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
canary-release: | |
if: ${{ github.repository == 'clerk/javascript' }} | |
runs-on: ${{ vars.RUNNER_NORMAL || 'ubuntu-latest' }} | |
timeout-minutes: ${{ vars.TIMEOUT_MINUTES_NORMAL && fromJSON(vars.TIMEOUT_MINUTES_NORMAL) || 10 }} | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
TURBO_REMOTE_ONLY: true | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup | |
id: config | |
uses: ./.github/actions/init | |
with: | |
turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }} | |
turbo-team: ${{ vars.TURBO_TEAM }} | |
turbo-token: ${{ secrets.TURBO_TOKEN }} | |
playwright-enabled: true # Must be present to enable caching on branched workflows | |
registry-url: 'https://registry.npmjs.org' | |
- name: Version packages for canary | |
id: version-packages | |
run: pnpm version-packages:canary | tail -1 >> "$GITHUB_OUTPUT" | |
- name: Build release | |
if: steps.version-packages.outputs.success == '1' | |
run: pnpm turbo build $TURBO_ARGS | |
- name: Canary release | |
if: steps.version-packages.outputs.success == '1' | |
run: pnpm release:canary | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_CONFIG_PROVENANCE: true | |
- name: Trigger workflows on related repos | |
uses: actions/github-script@v7 | |
with: | |
result-encoding: string | |
retries: 3 | |
retry-exempt-status-codes: 400,401 | |
github-token: ${{ secrets.CLERK_COOKIE_PAT }} | |
script: | | |
const clerkjsVersion = require('./packages/clerk-js/package.json').version; | |
const nextjsVersion = require('./packages/nextjs/package.json').version; | |
if (clerkjsVersion.includes('canary')) { | |
console.log('clerk-js changed, will notify clerk/cloudflare-workers'); | |
github.rest.actions.createWorkflowDispatch({ | |
owner: 'clerk', | |
repo: 'cloudflare-workers', | |
workflow_id: 'release-canary-clerkjs-proxy.yml', | |
ref: 'main', | |
inputs: { version: clerkjsVersion } | |
}) | |
} | |
if (nextjsVersion.includes('canary')) { | |
console.log('clerk/nextjs changed, will notify clerk/accounts'); | |
github.rest.actions.createWorkflowDispatch({ | |
owner: 'clerk', | |
repo: 'accounts', | |
workflow_id: 'release-staging.yml', | |
ref: 'main', | |
inputs: { version: nextjsVersion } | |
}) | |
} |