Release #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: Release | |
run-name: Release | |
on: | |
push: | |
branches: | |
- main | |
- release/v4 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
release: | |
name: Release | |
if: ${{ github.repository == 'clerk/javascript' }} | |
runs-on: ${{ vars.RUNNER_NORMAL }} | |
timeout-minutes: ${{ fromJSON(vars.TIMEOUT_MINUTES_NORMAL) }} | |
permissions: | |
contents: write | |
id-token: write | |
packages: write | |
pull-requests: write | |
issues: read | |
statuses: write | |
checks: write | |
steps: | |
- name: Echo github context | |
run: echo "$GITHUB_CONTEXT" | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
- 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 | |
- name: Build release | |
run: npx turbo build $TURBO_ARGS --force | |
- name: Create Release PR | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
commit: "chore(repo): Version packages" | |
publish: npm run release | |
env: | |
GITHUB_TOKEN: ${{ secrets.CLERK_COOKIE_PAT }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_CONFIG_PROVENANCE: true | |
- name: Trigger workflows on related repos | |
if: steps.changesets.outputs.published == 'true' | |
uses: actions/github-script@v6 | |
with: | |
result-encoding: string | |
retries: 3 | |
retry-exempt-status-codes: 400,401 | |
github-token: ${{ secrets.CLERK_COOKIE_PAT }} | |
script: | | |
const preMode = require("fs").existsSync("./.changeset/pre.json"); | |
if (!preMode) { | |
const clerkjsVersion = require('./packages/clerk-js/package.json').version; | |
github.rest.actions.createWorkflowDispatch({ | |
owner: 'clerk', | |
repo: 'cloudflare-workers', | |
workflow_id: 'prepare-prod-clerkjs-proxy-pr.yml', | |
ref: 'main', | |
inputs: { version: clerkjsVersion } | |
}) | |
} else{ | |
core.warning("Changeset in pre-mode should not prepare a ClerkJS production release") | |
} | |
- name: Generate notification payload | |
id: notification | |
if: steps.changesets.outputs.published == 'true' | |
run: payload=$(node scripts/notify.mjs '${{ steps.changesets.outputs.publishedPackages }}' '${{ github.actor }}') && echo ::set-output name=payload::${payload//$'\n'/'%0A'} | |
- name: Send commit log to Slack | |
id: slack | |
if: steps.changesets.outputs.published == 'true' | |
uses: slackapi/[email protected] | |
with: | |
payload: ${{ steps.notification.outputs.payload }} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CHANGELOG_WEBHOOK_URL }} | |
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK | |