Skip to content

Commit

Permalink
public access
Browse files Browse the repository at this point in the history
  • Loading branch information
mechiland committed Aug 5, 2024
1 parent 22f7eed commit ef749c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-insiders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ jobs:
run: npm version 0.0.0-insiders.${{ env.SHA_SHORT }} --force --no-git-tag-version --prefix react

- name: Publish `@jinshuju/field-icons`
run: npm publish --provenance --tag insiders
run: npm publish --access public --provenance --tag insiders
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish `@jinshuju/field-icons-react`
run: npm publish ./react --provenance --tag insiders
run: npm publish ./react --access public --provenance --tag insiders
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ jobs:
echo "RELEASE_CHANNEL=$(npm run release-channel --silent)" >> $GITHUB_ENV
- name: Publish `@jinshuju/field-icons`
run: npm publish --provenance --tag ${{ env.RELEASE_CHANNEL }}
run: npm publish --provenance --access public --tag ${{ env.RELEASE_CHANNEL }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish `@jinshuju/field-icons-react`
run: npm publish ./react --provenance --tag ${{ env.RELEASE_CHANNEL }}
run: npm publish ./react --access public --provenance --tag ${{ env.RELEASE_CHANNEL }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit ef749c4

Please sign in to comment.