Skip to content

Commit 3165db0

Browse files
committed
add composeRelease to pipeline
1 parent 9fc8ac4 commit 3165db0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/create-release-pr.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ jobs:
5151
modules: 'linux-il2cpp android ios'
5252
github-token: ${{ secrets.GITHUB_TOKEN }}
5353

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
5462
5563
- name: 🔍 Confirm PR Exists
5664
run: |

0 commit comments

Comments
 (0)