Skip to content

npm publish tagging next / latest #12

npm publish tagging next / latest

npm publish tagging next / latest #12

Workflow file for this run

name: Publish NPM
on:
push:
tags:
- v/*
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 3
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: v20
registry-url: https://registry.npmjs.org/
- uses: denoland/setup-deno@v1
with:
deno-version: v1
- name: Build the pkg
run: deno task build-npm
- name: Publish to npm (next)

Check failure on line 35 in .github/workflows/npm.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/npm.yml

Invalid workflow file

You have an error in your yaml syntax on line 35
if: {{ contains(github.ref_name, '-') }}
run: npm publish --access=public --provenance --tag=next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- name: Publish to npm (latest)
if: {{ !contains(github.ref_name, '-') }}
run: npm publish --access=public --provenance --tag=latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}