We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7f157f + cdfa9a4 commit 25d4970Copy full SHA for 25d4970
1 file changed
.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:
@@ -70,6 +75,8 @@ jobs:
70
75
run: |
71
76
set -e
72
77
npm publish --provenance --access public --verbose
78
+ env:
79
+ NODE_AUTH_TOKEN: '' # Explicitly empty for install
73
80
74
81
- name: Pull changes from remote
82
run: git pull origin master
0 commit comments