Skip to content

Commit

Permalink
feat: Added step to publish angular package
Browse files Browse the repository at this point in the history
  • Loading branch information
chavda-bhavik committed Sep 2, 2024
1 parent 7a5da3d commit 8b81fdb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/publish-prod-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,12 @@ jobs:
npm config set --workspaces=false --include-workspace-root registry https://registry.npmjs.org/
npm config set --workspaces=false --include-workspace-root //registry.npmjs.org/:_authToken=$NPM_TOKEN
npm publish --access public
- name: Publish @impler/angular package on NPM 📦
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
working-directory: packages/angular
run: |
npm config set --workspaces=false --include-workspace-root registry https://registry.npmjs.org/
npm config set --workspaces=false --include-workspace-root //registry.npmjs.org/:_authToken=$NPM_TOKEN
npm publish --access public

0 comments on commit 8b81fdb

Please sign in to comment.