Skip to content

Commit

Permalink
fix: deploy packages with public access
Browse files Browse the repository at this point in the history
  • Loading branch information
bbohlender committed Feb 21, 2024
1 parent b986bbd commit 3c9301a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ jobs:

- name: Deploy Uikit Package
working-directory: ./packages/uikit
run: pnpm publish --no-git-checks --tag ${{ steps.gitversion.outputs.preReleaseLabel == '' && 'latest' || steps.gitversion.outputs.preReleaseLabel }}
run: pnpm publish --access public --no-git-checks --tag ${{ steps.gitversion.outputs.preReleaseLabel == '' && 'latest' || steps.gitversion.outputs.preReleaseLabel }}

- name: Deploy Uikit-Lucide Package
working-directory: ./packages/icons/lucide
run: pnpm publish --no-git-checks --tag ${{ steps.gitversion.outputs.preReleaseLabel == '' && 'latest' || steps.gitversion.outputs.preReleaseLabel }}
run: pnpm publish --access public --no-git-checks --tag ${{ steps.gitversion.outputs.preReleaseLabel == '' && 'latest' || steps.gitversion.outputs.preReleaseLabel }}

0 comments on commit 3c9301a

Please sign in to comment.