We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2f5301 commit 8816ab9Copy full SHA for 8816ab9
.github/workflows/npm-dev.yaml
@@ -24,4 +24,6 @@ jobs:
24
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
26
NPM_TAG: "beta"
27
- PR_NUMBER_AND_COMMIT_SHA: ${{ github.event.number }}-${{ github.event.pull_request.head.sha }}
+ # Since this only runs on a merge into main, we can't use github.event.number
28
+ # so we instead use the word "beta" and the PR merge commit SHA
29
+ PR_NUMBER_AND_COMMIT_SHA: beta-${{ github.sha }}
0 commit comments