Skip to content

node-capmonster: v0.4.4 #6

node-capmonster: v0.4.4

node-capmonster: v0.4.4 #6

Workflow file for this run

name: 📦 Publish Package to NPM
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- name: install yarn package manager
run: npm install yarn --global
- name: install packages via yarn
run: yarn
- name: Build package
run: yarn build
- name: publish package to npm
run: npm publish --force
env:
NODE_AUTH_TOKEN: ${{ secrets.npm_access }}