Skip to content

ci: do not checkout repository on publish-npm step #6

ci: do not checkout repository on publish-npm step

ci: do not checkout repository on publish-npm step #6

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Node.js Package
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Modify package.json with release-specific values
id: sub_manifest_link_version
uses: cschleiden/replace-tokens@v1
with:
files: 'package.json'
env:
VERSION: ${{ github.ref_name }}
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}