Skip to content

Commit

Permalink
add new line to echo statement
Browse files Browse the repository at this point in the history
  • Loading branch information
imolorhe committed Dec 29, 2024
1 parent d6f1482 commit dd4f046
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
inputs:
node_version:
description: 'Node.js version to use'
required: true
default: '22'
type: string

jobs:
Expand All @@ -32,7 +32,7 @@ jobs:
node-version: ${{ inputs.node_version }}
cache: 'pnpm'
- name: Authenticate with Registry
run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
run: echo -e "\n//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: pnpm i --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
prefer-workspace-packages = true
fetch-timeout = 1000000
git-tag-version = false
git-tag-version = false

0 comments on commit dd4f046

Please sign in to comment.