We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
npm
1 parent 2964e97 commit 5804431Copy full SHA for 5804431
.github/workflows/publish.yml
@@ -68,13 +68,17 @@ jobs:
68
69
- uses: actions/setup-node@v3
70
with:
71
- node-version: "16"
+ node-version: 16.x
72
+ cache: "npm"
73
+ registry-url: "https://npm.pkg.github.com"
74
75
- name: Parse version from package.json
76
run: |
77
echo "EXT_VERSION=$(node -p -e "require('./package.json').version")" >> $GITHUB_ENV
78
79
- run: npm ci
80
+ env:
81
+ NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
82
83
- run: npm run package
84
0 commit comments