publish workflow
Some checks failed
Publish Package / build (push) Failing after 27s

This commit is contained in:
Lee 2024-04-14 22:34:47 +01:00
parent a2e1f6fd0a
commit 9b0d1e3497

@ -0,0 +1,17 @@
name: Publish Package
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}