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 7539e69 commit eac76f8Copy full SHA for eac76f8
.github/workflows/release-please.yml
@@ -151,6 +151,19 @@ jobs:
151
env:
152
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
153
154
+ - name: github package registry publish
155
+ run: |
156
+ cat << EOF > .npmrc
157
+ //npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}
158
+ @fastly:registry=https://npm.pkg.github.com
159
+ registry=https://registry.npmjs.org/
160
+ always-auth=true
161
+ EOF
162
+ npm publish
163
+ rm .npmrc
164
+ env:
165
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
166
+
167
- run: yarn
168
working-directory: ./documentation
169
0 commit comments