We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f626ddb commit 4d5fec3Copy full SHA for 4d5fec3
1 file changed
.github/workflows/publish.yml
@@ -1,11 +1,11 @@
1
name: Publish
2
3
on:
4
- release:
5
- types: [published]
+ pull_request:
+ types: [opened, synchronize, reopened]
6
7
jobs:
8
- publish_npm:
+ publish:
9
runs-on: ubuntu-latest
10
timeout-minutes: 1
11
@@ -24,7 +24,7 @@ jobs:
24
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
run: |
26
echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc
27
- echo "//npm.pkg.github.com/:_authToken=$GITHUB_TOKEN >> .npmrc
+ echo "//npm.pkg.github.com/:_authToken=$GITHUB_TOKEN" >> .npmrc
28
29
- name: Publish package to github
30
run: npm publish --scope=@internxt --access public
0 commit comments