We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f882f7 commit ff2a0d0Copy full SHA for ff2a0d0
.github/workflows/publish.yml
@@ -41,7 +41,9 @@ jobs:
41
# pass --github-prerelease when we are only branch other than release
42
run: |
43
if [ ${{ github.ref }} = "refs/heads/release" ]; then
44
- pnpm release-plan publish
+ pnpm release-plan publish --publish-branch=release
45
+ elif [ ${{ github.ref }} = "refs/heads/beta" ]; then
46
+ pnpm release-plan publish --github-prerelease --publish-branch=beta
47
else
48
pnpm release-plan publish --github-prerelease
49
fi
0 commit comments