Skip to content

Commit 90b6cb3

Browse files
committed
Add push tag and publish to npm workflow
1 parent 705f51e commit 90b6cb3

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/publish.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Publish package version to npmjs
2+
3+
on:
4+
push:
5+
tags:
6+
- "v[0-9]+.[0-9]+.[0-9]+"
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: read
13+
id-token: write
14+
steps:
15+
- uses: actions/checkout@v4
16+
# Setup .npmrc file to publish to npm
17+
- uses: actions/setup-node@v4
18+
with:
19+
# node-version: '20.x'
20+
node-version-file: .nvmrc
21+
registry-url: 'https://registry.npmjs.org'
22+
23+
- name: Install npm dependencies
24+
run: yarn install --immutable
25+
26+
- name: Publish package to npm
27+
run: npm publish --provenance --access public
28+
env:
29+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)