Skip to content

Commit 45f9efd

Browse files
author
Viktor Kuroljov
committed
attempt 2 out of 100500 to fix cicd
1 parent f1911e3 commit 45f9efd

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,17 @@ jobs:
99
publish:
1010
name: publish
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
id-token: write # required for npm Trusted Publishing (OIDC)
1215
steps:
1316
- uses: actions/checkout@v4
1417
- uses: oven-sh/setup-bun@v2
18+
- uses: actions/setup-node@v6
19+
with:
20+
node-version: '25'
21+
1522
- run: bun i --cwd ./packages/tinyworker-core/ --frozen-lockfile
1623
- run: bun run --cwd ./packages/tinyworker-core build
17-
- run: bun publish --cwd ./packages/tinyworker-core --access public --tolerate-republish --frozen-lockfile
24+
- run: npm publish
25+
working-directory: ./packages/tinyworker-core

0 commit comments

Comments
 (0)