Skip to content

update template

update template #7

Workflow file for this run

name: Publish to NPM
on:
push:
branches:
- master
release:
types: [published]
workflow_dispatch:
inputs:
tag:
description: 'Release tag (e.g., v1.0.0)'
required: true
jobs:
publish:
name: Publish to NPM
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Publish to NPM
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create GitHub release comment
if: github.event_name == 'release'
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.payload.release.id,
owner: context.repo.owner,
repo: context.repo.repo,
body: '🎉 Package published to NPM successfully!'
})