Skip to content

Commit 0eba0bb

Browse files
committed
chore: update release flow
1 parent 006603d commit 0eba0bb

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup Node
2828
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
2929
with:
30-
node-version: 20
30+
node-version: 24
3131

3232
- name: Install dependencies
3333
run: pnpm install --frozen-lockfile
@@ -62,4 +62,3 @@ jobs:
6262
./scripts/release.sh
6363
env:
6464
NPM_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
65-
NPM_CONFIG_PROVENANCE: true

pnpm-lock.yaml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/release.sh

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,6 @@ git restore -s@ -SW -- packages
88
# Build
99
pnpm build:type
1010

11-
# Update token
12-
if [[ ! -z ${NPM_AUTH_TOKEN} ]] ; then
13-
echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" >> ~/.npmrc
14-
echo "registry=https://registry.npmjs.org/" >> ~/.npmrc
15-
echo "always-auth=true" >> ~/.npmrc
16-
npm whoami
17-
fi
18-
1911
# Release packages
2012
for PKG in packages/* ; do
2113
if [[ -d $PKG ]]; then

0 commit comments

Comments
 (0)