Skip to content

feat: Add GitHub Actions workflow for release and publish process #1

feat: Add GitHub Actions workflow for release and publish process

feat: Add GitHub Actions workflow for release and publish process #1

Workflow file for this run

name: Release and Publish
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org/'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Publish to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}