We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a52324c commit 1b654faCopy full SHA for 1b654fa
1 file changed
.github/workflows/reusable-release.yml
@@ -3,6 +3,8 @@ name: Release
3
on:
4
workflow_call:
5
secrets:
6
+ GITHUB_REPOSITORY:
7
+ required: true
8
NPM_TOKEN:
9
required: false
10
@@ -41,7 +43,7 @@ jobs:
41
43
42
44
- name: Release new version
45
env:
- GITHUB_REPOSITORY: ${{ github.repository }}
46
+ GITHUB_REPOSITORY: ${{ secrets.GITHUB_REPOSITORY }}
47
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
49
run: npm run release
0 commit comments