Skip to content

Commit

Permalink
Correct secret key name in GitHub workflows
Browse files Browse the repository at this point in the history
Updated the secret name from DOTENV_KEY to NPM_TOKEN in both publish_nestjs.yaml and publish_client.yaml configurations. This change ensures that the workflows correctly use the intended secret for publishing.
  • Loading branch information
dennisofficial committed Sep 24, 2024
1 parent 79c1bdc commit addefc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
with:
target: client
secrets:
DOTENV_KEY: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/publish_nestjs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
with:
target: nestjs
secrets:
DOTENV_KEY: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit addefc0

Please sign in to comment.