Skip to content

Push to NPM

Push to NPM #49

Workflow file for this run

name: Push to NPM
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- run: deno task build
- run: npm publish ./npm
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}