Skip to content

ci: uses latest git actions #12

ci: uses latest git actions

ci: uses latest git actions #12

Workflow file for this run

name: NPM publish
on:
push:
tags:
- v*
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: execute npm ci command
run: npm ci
- name: execute npm publish command
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}