npm run build build:v8 build:fallbacks build:figma
#4
Workflow file for this run
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 Canary | |
on: | |
push: | |
branches-ignore: | |
- 'main' | |
- 'changeset-release/**' | |
- 'dependabot/**' | |
jobs: | |
release-canary: | |
name: Canary | |
if: ${{ github.repository == 'primer/primitives' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
fetch-depth: 0 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci --no-audit --no-fund --include=dev | |
- name: Build v8 tokens | |
run: npm run build:v8 | |
- name: Create .npmrc | |
run: | | |
cat << EOF > "$HOME/.npmrc" | |
//registry.npmjs.org/:_authToken=$NPM_TOKEN | |
EOF | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN_SHARED }} | |
- name: Publish canary version | |
run: | | |
echo "$( jq '.version = "0.0.0"' package.json )" > package.json | |
echo -e "---\n'@primer/primitives': patch\n---\n\nFake entry to force publishing" > .changeset/force-snapshot-release.md | |
npx changeset version --snapshot | |
npx changeset publish --tag canary | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Output canary version number | |
id: commitStatus | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const package = require(`${process.env.GITHUB_WORKSPACE}/package.json`) | |
github.rest.repos.createCommitStatus({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
sha: context.sha, | |
state: 'success', | |
context: `Published ${package.name}`, | |
description: package.version, | |
target_url: `https://unpkg.com/${package.name}@${package.version}/` | |
}) | |
// Output the release version for next step | |
core.setOutput('packageVersion', package.version); | |
// Output the package name for next step | |
core.setOutput('packageName', package.name); | |
- name: Output canary version to summary | |
env: | |
VERSION: ${{ steps.commitStatus.outputs.packageVersion }} | |
PACKAGE_NAME: ${{ steps.commitStatus.outputs.packageName }} | |
run: | | |
echo "### Latest canary release" >> $GITHUB_STEP_SUMMARY | |
echo "[v$VERSION](https://unpkg.com/$PACKAGE_NAME@$VERSION/)" >> $GITHUB_STEP_SUMMARY |