Skip to content

Create publish.yml

Create publish.yml #1

Workflow file for this run

name: Publish to NPM
on:
push:
branches:
- main
paths-ignore:
- '**.md'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Automated Version Bump
uses: phips28/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
minor-wording: 'feat,feature'
major-wording: 'BREAKING,major'
patch-wording: 'fix,patch'
rc-wording: 'rc,beta,alpha'
- name: Publish to NPM
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}