We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be47b9f commit e573012Copy full SHA for e573012
1 file changed
.github/workflows/publish.yml
@@ -17,12 +17,18 @@ jobs:
17
with:
18
node-version: '22'
19
20
- - name: Setup .npmrc
+ - name: Setup .yarnrc.yml
21
run: |
22
- cat <<- 'EOF' > .npmrc
23
- @factset:registry=https://${{ secrets.NPM_PUBLISH_URL }}
24
- //${{ secrets.NPM_PUBLISH_URL }}:_authToken=${{ secrets.NPM_AUTH_TOKEN }}
25
- always-auth = true
+ cat <<'EOF' >> .yarnrc.yml
+ npmScopes:
+ factset:
+ npmRegistryServer: "https://${{ secrets.NPM_PUBLISH_URL }}"
26
+ npmPublishRegistry: "https://${{ secrets.NPM_PUBLISH_URL }}"
27
+ npmAlwaysAuth: true
28
+ npmRegistries:
29
+ "//${{ secrets.NPM_PUBLISH_URL }}":
30
+ npmAuthToken: "${{ secrets.NPM_AUTH_TOKEN }}"
31
32
EOF
33
34
- name: Install dependencies
0 commit comments