Skip to content

chore: Increase version number to 1.0.10 #15

chore: Increase version number to 1.0.10

chore: Increase version number to 1.0.10 #15

Workflow file for this run

name: Publish Package to npmjs
permissions:
contents: write
id-token: write
on:
push:
tags:
- '?.?.?'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build
- run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}