Skip to content

9.0.1-dev.1

9.0.1-dev.1 #29

Workflow file for this run

name: Publish to NPM (prerelease)
on:
release:
types: [prereleased]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: dev
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: "2.x"
- uses: actions/[email protected]
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: deno task build
- run: npm publish --tag dev
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}