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 32b9ef0 commit ba0aee6Copy full SHA for ba0aee6
.github/publish.yml
.github/workflows/release-please.yml
@@ -33,3 +33,15 @@ jobs:
33
git tag -a ${{ steps.release.outputs.tag_name }}-deno -m 'chore: ${{ steps.release.outputs.tag_name }} release'
34
git push origin ${{ steps.release.outputs.tag_name }}-deno
35
if: ${{ steps.release.outputs.release_created }}
36
+ - uses: actions/setup-node@v1
37
+ with:
38
+ node-version: 14
39
+ registry-url: 'https://external-dot-oss-automation.appspot.com/'
40
+ if: ${{ steps.release.outputs.release_created }}
41
+ - run: npm install
42
43
+ - run: npm publish
44
+ env:
45
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
46
47
+
0 commit comments