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 bf64f33 commit 9392dcbCopy full SHA for 9392dcb
.github/workflows/ci-release.yaml
@@ -51,3 +51,11 @@ jobs:
51
run: |
52
echo "Publishing to npmjs.org using dist-tag: $DIST_TAG"
53
npm publish --access=public --tag "$DIST_TAG"
54
+
55
+ - name: Publish to pkg.github.com
56
+ env:
57
+ NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58
+ run: |
59
+ npm config set "@fastly:registry" "https://npm.pkg.github.com/"
60
+ echo "Publishing to pkg.github.com using dist-tag: $DIST_TAG"
61
+ npm publish --access=public --tag "$DIST_TAG"
0 commit comments