Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24

- name: Enable corepack
run: corepack enable pnpm
Expand Down
132 changes: 132 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
name: Publish

on:
workflow_dispatch:
inputs:
bump:
description: "Version bump type"
required: true
type: choice
options:
- patch
- minor
- major
- prepatch
- preminor
- premajor
- prerelease
preid:
description:
"Prerelease identifier (alpha, beta, rc). Only used with pre* bumps."
required: false
type: string
dry_run:
description: "Dry run — skip publish, push, and release"
required: false
type: boolean
default: false

concurrency:
group: publish
cancel-in-progress: false

jobs:
checks:
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/checks.yml

publish:
Comment thread
0x80 marked this conversation as resolved.
if: github.ref == 'refs/heads/main'
needs: checks
runs-on: ubuntu-latest
# Authentication is handled via OIDC trusted publishing (id-token),
# so no NPM_TOKEN secret is needed.
permissions:
contents: write
id-token: write

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
registry-url: "https://registry.npmjs.org"

- name: Enable corepack
run: corepack enable pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build
run: pnpm build

- name: Configure git
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"

- name: Bump version
id: version
env:
BUMP: ${{ inputs.bump }}
PREID: ${{ inputs.preid }}
run: |
ARGS=("$BUMP")
if [[ "$BUMP" == pre* && -n "$PREID" ]]; then
ARGS+=(--preid "$PREID")
fi

npm version "${ARGS[@]}" --git-tag-version true

VERSION=$(node -p "require('./package.json').version")
TAG="v${VERSION}"

echo "version=${VERSION}" >> $GITHUB_OUTPUT
echo "tag=${TAG}" >> $GITHUB_OUTPUT

if [[ "$VERSION" == *-* ]]; then
echo "dist_tag=next" >> $GITHUB_OUTPUT
echo "prerelease=true" >> $GITHUB_OUTPUT
else
echo "dist_tag=latest" >> $GITHUB_OUTPUT
echo "prerelease=false" >> $GITHUB_OUTPUT
fi

- name: Publish summary
run: |
echo "### Publish Summary" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "- **Version:** ${{ steps.version.outputs.version }}" >> $GITHUB_STEP_SUMMARY
echo "- **Tag:** ${{ steps.version.outputs.tag }}" >> $GITHUB_STEP_SUMMARY
echo "- **Dist tag:** ${{ steps.version.outputs.dist_tag }}" >> $GITHUB_STEP_SUMMARY
echo "- **Prerelease:** ${{ steps.version.outputs.prerelease }}" >> $GITHUB_STEP_SUMMARY
echo "- **Dry run:** ${{ inputs.dry_run }}" >> $GITHUB_STEP_SUMMARY

# Publish before push: npm publish is not retryable (same version
# can't be published twice), while git push is idempotent. If push
# fails after a successful publish, it can simply be retried manually.
- name: Publish to npm
if: ${{ inputs.dry_run == false }}

Copilot AI Feb 17, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The npm publish step is missing authentication configuration. When using actions/setup-node@v4 with registry-url, you need to set the NODE_AUTH_TOKEN environment variable in the publish step. Without this, npm publish will fail with an authentication error.

Add an env section to the publish step with NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} (assuming you have an NPM_TOKEN secret configured in your repository settings).

Suggested change
if: ${{ inputs.dry_run == false }}
if: ${{ inputs.dry_run == false }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Copilot uses AI. Check for mistakes.
run: |
npm publish --provenance --tag ${{ steps.version.outputs.dist_tag }}

- name: Push commit and tag
if: ${{ inputs.dry_run == false }}
run: git push origin HEAD --follow-tags

Comment thread
0x80 marked this conversation as resolved.
- name: Create GitHub Release
if: ${{ inputs.dry_run == false }}
run: |
PRERELEASE_FLAG=""
if [[ "${{ steps.version.outputs.prerelease }}" == "true" ]]; then
PRERELEASE_FLAG="--prerelease"
fi

gh release create "${{ steps.version.outputs.tag }}" \
--generate-notes \
$PRERELEASE_FLAG
env:
GH_TOKEN: ${{ github.token }}