We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5625b00 commit 2d57f7aCopy full SHA for 2d57f7a
.github/workflows/test.yml
@@ -14,7 +14,13 @@ jobs:
14
uses: actions/setup-node@v6
15
16
- name: Configure registry
17
- run: echo "@remarkablemark:registry=https://npm.pkg.github.com" > .npmrc
+ run: |
18
+ cat <<EOF > .npmrc
19
+ @remarkablemark:registry=https://npm.pkg.github.com
20
+ //npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}
21
+ EOF
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
25
- name: Install package
26
run: npm install @remarkablemark/test
0 commit comments