Skip to content

Commit 1b53043

Browse files
authored
chore: workaround broken setup-node action with NPM trusted publishing (#2819)
Signed-off-by: Chad Wilson <[email protected]>
1 parent d4da205 commit 1b53043

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,8 @@ jobs:
203203
git config --global user.email "$(git --no-pager log --format=format:'%ae' -n 1)"
204204
205205
- name: Deploy npm
206-
run: |
206+
run: | # See https://github.com/actions/setup-node/issues/1440
207+
unset NODE_AUTH_TOKEN
207208
cd build/npm
208209
npm version $GAUGE_VERSION
209210
npm publish --access=public

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
// CurrentGaugeVersion represents the current version of Gauge
17-
var CurrentGaugeVersion = &Version{1, 6, 24}
17+
var CurrentGaugeVersion = &Version{1, 6, 25}
1818

1919
// BuildMetadata represents build information of current release (e.g, nightly build information)
2020
var BuildMetadata = ""

0 commit comments

Comments
 (0)