fix: 🔧 just publish don't create a release in GH we already di… #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}} |