Add publish workflow (#8)

This commit is contained in:
Slava 2024-08-30 17:37:26 +03:00 committed by GitHub
parent be618b291c
commit 2dad817c23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 31 additions and 0 deletions

31
.github/workflows/publish.yaml vendored Normal file
View File

@ -0,0 +1,31 @@
name: Publish
on:
push:
tags:
- 'v*.*.*'
workflow_dispatch:
env:
node_version: 22
permissions:
id-token: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish --provenance --access public
if: startsWith(github.ref, 'refs/tags/')
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}