Skip to content

Update version

Update version #22

Workflow file for this run

# Publishes the package to NPM every time a release is created.
name: save-server
on:
release:
types: [created]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

Check failure on line 12 in .github/workflows/npmpublish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/npmpublish.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
with:
node-version: 20
- uses: actions/setup-node@v1
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}