Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

release: bump version to v1.3.27 #21

release: bump version to v1.3.27

release: bump version to v1.3.27 #21

Workflow file for this run

name: Publish to NPM Public Registry
on:
push:
tags:
- 'v*'
branches:
- main
- master
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js for NPM
uses: actions/setup-node@v4
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org/'
- name: Install dependencies
run: npm ci
- name: Make CLI executable
run: chmod +x bin/index.js
- name: Verify package
run: npm pack --dry-run
- name: Publish to NPM
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}