Skip to content

v0.0.3 - fix: remove .github from package #3

v0.0.3 - fix: remove .github from package

v0.0.3 - fix: remove .github from package #3

Workflow file for this run

name: Build and Publish
on:
release:
types: [created]
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN_PUBLISH}}