Skip to content

Commit 68f356b

Browse files
authored
fix: Try publishing with access public (#736)
1 parent 7ed3ff9 commit 68f356b

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/release-please.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ jobs:
4949
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
5050
with:
5151
registry-url: 'https://registry.npmjs.org'
52-
node-version: 22.x
52+
node-version: 24.x
53+
54+
- run: npm -v
5355

5456
- name: Install Dependencies
5557
run: |
@@ -60,7 +62,7 @@ jobs:
6062
env:
6163
NPM_CONFIG_PROVENANCE: true
6264
run: |
63-
pnpm publish
65+
pnpm publish --access public
6466
6567
- name: Summary
6668
uses: streetsidesoftware/actions/public/summary@v1

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ jobs:
3333
with:
3434
node-version: ${{ matrix.node-version }}
3535

36-
- run: |
36+
- run: npm -v
37+
38+
- name: Install and Build
39+
run: |
3740
pnpm install
3841
pnpm build
42+
3943
- run: pnpm test

0 commit comments

Comments
 (0)