We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fc8ac4 commit 3165db0Copy full SHA for 3165db0
.github/workflows/create-release-pr.yml
@@ -51,6 +51,14 @@ jobs:
51
modules: 'linux-il2cpp android ios'
52
github-token: ${{ secrets.GITHUB_TOKEN }}
53
54
+ - name: 🏗️ Run composeRelease.sh
55
+ run: |
56
+ chmod +x ./composeRelease.sh
57
+ if [[ -n "$POSTFIX" ]]; then
58
+ ./composeRelease.sh "$BUMP_COMMAND" "$POSTFIX" || echo "composeRelease.sh failed, continuing to patch manually"
59
+ else
60
+ ./composeRelease.sh "$BUMP_COMMAND" || echo "composeRelease.sh failed, continuing to patch manually"
61
+ fi
62
63
- name: 🔍 Confirm PR Exists
64
run: |
0 commit comments