Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add workflow to release to npm on GitHub release #391

Merged
merged 2 commits into from
May 6, 2024
Merged
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
46 changes: 46 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Release to npm

on:
release:
types: ["published"]
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
cache: "yarn"

- run: yarn install

- uses: actions/github-script@v7
name: Extract tag
id: extract-tag
with:
result-encoding: string
script: |
const { version } = require('${{ github.workspace }}/package.json');
const semver = require('semver');

const DEFAULT_TAG = 'latest';

const parsedVersion = semver.parse(version);
if (parsedVersion == null) {
return DEFAULT_TAG;
}
const { prerelease } = parsedVersion;
if (prerelease.length === 0) {
return DEFAULT_TAG;
}
const tag = prerelease[0];
return typeof tag === 'string' ? tag : DEFAULT_TAG;

- run: yarn npm publish --tag "${{ steps.extract-tag.outputs.result }}"
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading