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 6eda41e commit a5480c7Copy full SHA for a5480c7
.github/actions/yarn/action.yml
@@ -6,8 +6,11 @@ runs:
6
steps:
7
- name: Setup Node.js
8
uses: actions/setup-node@v3
9
+ env:
10
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
11
with:
12
node-version-file: .nvmrc
13
+ registry-url: https://registry.npmjs.org/
14
- name: Custom Cypress Cache Folder
15
shell: bash
16
run: |
.github/workflows/publish.yml
@@ -38,11 +38,7 @@ jobs:
38
- uses: ./.github/actions/yarn
39
40
- run: yarn turbo run build --concurrency=3
41
- - name: NPM Auth
42
- env:
43
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
44
- run: |
45
- echo "registry=https://registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
+
46
- name: Publish
47
env:
48
HUSKY_ENABLED: true
0 commit comments