Version Packages #469
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 candidate | |
on: | |
push: | |
branches: | |
- 'changeset-release/main' | |
- 'changeset-release/next-minor' | |
jobs: | |
release-candidate: | |
if: ${{ github.repository == 'primer/brand' && github.ref_name == 'changeset-release/main' }} | |
name: Candidate | |
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 | |
- name: Build | |
run: npm run build:lib | |
- 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 release candidate | |
run: | | |
npm exec --workspaces -- ../../packages/repo-configs/scripts/prepare-release-candidate | |
yarn changeset publish --tag next | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Output canary version | |
uses: actions/[email protected] | |
with: | |
script: | | |
const paths = ['react', 'design-tokens'].forEach((path) => { | |
const package = require(`${process.env.GITHUB_WORKSPACE}/packages/${path}/package.json`) | |
github.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}/` | |
}) | |
}) | |
release-candidate-next-minor: | |
if: ${{ github.repository == 'primer/brand' && github.ref_name == 'changeset-release/next-minor' }} | |
name: Next minor candidate (@next-minor) | |
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 | |
- name: Build | |
run: npm run build:lib | |
- 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 release candidate | |
run: | | |
npm exec --workspaces -- ../../packages/repo-configs/scripts/prepare-release-candidate | |
yarn changeset publish --tag next-minor | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Output canary version | |
uses: actions/[email protected] | |
with: | |
script: | | |
const paths = ['react', 'design-tokens'].forEach((path) => { | |
const package = require(`${process.env.GITHUB_WORKSPACE}/packages/${path}/package.json`) | |
github.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}/` | |
}) | |
}) |