Skip to content

2.0.3

2.0.3 #5

Workflow file for this run

# Any tag automatically gets made into a release and it gets published to npmjs.
name: Release Tags
on:
push:
tags:
- "v*.*.*"
jobs:
publish-npm:
needs: build

Check failure on line 11 in .github/workflows/release-tags.yml

View workflow run for this annotation

GitHub Actions / Release Tags

Invalid workflow file

The workflow is not valid. .github/workflows/release-tags.yml (Line: 11, Col: 12): Job 'publish-npm' depends on unknown job 'build'.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@975c1b265e11dd76618af1c374e7981f9a6ff44a