We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1502413 commit af09674Copy full SHA for af09674
.github/workflows/deploy-pages.yml
@@ -26,8 +26,10 @@ jobs:
26
cache: npm
27
28
- name: Configure Artifactory registry
29
- if: ${{ secrets.JF_NPM_TOKEN != '' }}
30
- run: npm config set //ankorstore.jfrog.io/artifactory/api/npm/npm-virtual/:_auth ${{ secrets.JF_NPM_TOKEN }}
+ if: env.JF_NPM_TOKEN != ''
+ env:
31
+ JF_NPM_TOKEN: ${{ secrets.JF_NPM_TOKEN }}
32
+ run: npm config set //ankorstore.jfrog.io/artifactory/api/npm/npm-virtual/:_auth "$JF_NPM_TOKEN"
33
34
- run: npm ci
35
0 commit comments