Skip to content

Commit

Permalink
ci: fixed npmrc run action in release.yaml
Browse files Browse the repository at this point in the history
- we have added a npmrc file
- the format broke because a line break was missing
  • Loading branch information
kirrg001 committed Dec 12, 2024
1 parent 577e461 commit 67a7c30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ jobs:
run: .github/workflows/disallow-major-release.sh

- name: Add token to .npmrc
run: echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' >> .npmrc
run: |
echo "" >> .npmrc
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> .npmrc
# This is required to make sure that new packages (@instana packages that we publish for the first time) can be
# published to the npm registry. The default visibility for scoped packages is private, but our npm account
Expand Down

0 comments on commit 67a7c30

Please sign in to comment.