We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd343d7 commit a915ba4Copy full SHA for a915ba4
1 file changed
.github/workflows/publish.yml
@@ -40,6 +40,11 @@ jobs:
40
- name: Install dependencies & build
41
working-directory: ./packages/${{ steps.extract.outputs.package_name }}
42
run: yarn install && yarn build
43
+ - name: Create NPM release
44
+ working-directory: ./packages/${{ steps.extract.outputs.package_name }}
45
+ run: npm publish --access public
46
+ env:
47
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
48
- name: Create GitHub release
49
uses: actions/github-script@v8
50
with:
0 commit comments