Skip to content

Commit fba7949

Browse files
committed
Fix packages not being published as public
1 parent 70aba0b commit fba7949

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ jobs:
1515
- run: yarn --frozen-lockfile
1616
- run: yarn build
1717
- name: Publish @make-live/toolkit
18-
run: yarn publish
18+
run: yarn publish --access public
1919
working-directory: packages/make-live-toolkit
2020
env:
2121
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2222
- name: Publish @make-live/toolkit-react
23-
run: yarn publish
23+
run: yarn publish --access public
2424
working-directory: packages/make-live-toolkit-react
2525
env:
2626
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2727
- name: Publish @make-live/toolkit-dev
28-
run: yarn publish
28+
run: yarn publish --access public
2929
working-directory: packages/make-live-toolkit-dev
3030
env:
3131
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)