Skip to content

fix: 🔧 just publish don't create a release in GH we already di… #3

fix: 🔧 just publish don't create a release in GH we already di…

fix: 🔧 just publish don't create a release in GH we already di… #3

Workflow file for this run

name: Publish to NPM on Release
on:
push:
tags:
- "v*"
permissions:
contents: read
packages: write
jobs:
publish-npm:
name: Publish to NPM
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: https://registry.npmjs.org
- run: |
npm ci
npm run build
npm publish --registry=https://registry.npmjs.org
env:
NODE_AUTH_TOKEN: ${{secrets.GLIDE_ORG_NPM_TOKEN}}