Skip to content

Commit b5ca84d

Browse files
committed
fix(ci): env vars
1 parent ff28a5b commit b5ca84d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ jobs:
1414
id-token: write
1515

1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818

1919
- uses: oven-sh/setup-bun@v2
2020
with:
2121
bun-version: latest
2222

23+
- uses: actions/setup-node@v6
24+
with:
25+
node-version: 24
26+
registry-url: "https://registry.npmjs.org"
27+
2328
- run: |
2429
bun install --frozen-lockfile
2530
bun --filter schwi build
2631
27-
- uses: actions/setup-node@v4
28-
with:
29-
node-version: 24
30-
registry-url: "https://registry.npmjs.com"
31-
3232
- working-directory: package
3333
run: |
34-
npm publish --provenance --access public
34+
NODE_AUTH_TOKEN="" npm publish

0 commit comments

Comments
 (0)