Skip to content

Commit

Permalink
chore: Update NODE_AUTH_TOKEN in deploy workflow
Browse files Browse the repository at this point in the history
The code changes update the NODE_AUTH_TOKEN environment variable in the deploy workflow. The previous value, ${{ secrets.GITHUB_TOKEN }}, is replaced with ${{ secrets.REPO_PAT }}. This change ensures that the correct authentication token is used for publishing packages during the deployment process.
  • Loading branch information
dharmesh-hemaram committed May 12, 2024
1 parent dbf130d commit cdb43b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
if: ${{ inputs.publish_packages }}
run: npx nx release publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.REPO_PAT }}
- name: Bundle Projects
run: |
mkdir bundle
Expand Down

0 comments on commit cdb43b0

Please sign in to comment.