-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed login step for security reasons
- Loading branch information
Vignesh Kennadi
committed
Sep 27, 2024
1 parent
9b09a4b
commit 82d469e
Showing
1 changed file
with
2 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,16 +29,12 @@ jobs: | |
run: npm ci | ||
working-directory: xero-node | ||
|
||
- name: Login to npm | ||
run: npm login --scope=@your-scope --registry=https://registry.npmjs.org/ <<< "manisht72x\n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\[email protected]" | ||
working-directory: xero-node | ||
|
||
- name: Run Build | ||
run: npm run build | ||
working-directory: xero-node | ||
|
||
- name: Publish to npm | ||
# env: | ||
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: npm publish --access public | ||
working-directory: xero-node |