We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4154fd7 + a9ef93d commit 66d24dfCopy full SHA for 66d24df
.github/workflows/publish-package.yml
@@ -35,6 +35,11 @@ jobs:
35
registry-url: 'https://registry.npmjs.org'
36
scope: "@sistent"
37
38
+ - name: "Set Package Version"
39
+ uses: reedyuk/npm-version@1.1.1
40
+ with:
41
+ version: ${{ github.event.release.tag_name }} || ${{ inputs.release_version }}
42
+
43
- name: Install Dependencies
44
run: npm ci
45
env:
@@ -66,7 +71,7 @@ jobs:
66
71
67
72
- name: Publish Package
68
73
69
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
74
+ NODE_AUTH_TOKEN: '' # Explicitly empty for install
70
75
run: |
76
set -e
77
npm publish --provenance --access public --verbose
0 commit comments