Skip to content

v1.3.0

v1.3.0 #28

Workflow file for this run

name: Publish
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: v22.9.0
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm version --no-git-tag-version ${{ github.event.release.tag_name }}
- name: get release tag
run: |
if [[ "${{ github.event.release.tag_name }}" == *beta* ]]; then
echo "TAG=beta" >> $GITHUB_ENV
else
echo "TAG=latest" >> $GITHUB_ENV
fi
- run: npm publish --provenance --access public --tag $TAG
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}