Skip to content

ci(publish): update action title #2

ci(publish): update action title

ci(publish): update action title #2

Workflow file for this run

name: Publish package
on:
workflow_dispatch:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check Out Repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '23.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies 📦
run: npm ci
- name: Publish to npmjs
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}