Skip to content

Run on stricter tag #11

Run on stricter tag

Run on stricter tag #11

Workflow file for this run

name: Publish Package to npmjs
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-[a-zA-Z]*.[0-9]+'
jobs:
build:
runs-on: ubuntu-latest
# TODO: Run if main or release/ branch
# if: [...]
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- uses: nick-y-ito/gha-npm-version-match@v1
- run: npm ci
- run: npm run build
#- run: npm publish --provenance --access public
- run: npm publish --dry-run
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}