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 8a4c7a5 commit 4679b03Copy full SHA for 4679b03
.github/workflows/prepare-release.yml
@@ -12,6 +12,9 @@ on:
12
release-version:
13
description: "Version for new tag (ex: v2.8.0)"
14
required: true
15
+ secrets:
16
+ VERSIONBUMP_GHAPP_PRIVATE_KEY:
17
+ required: true
18
19
jobs:
20
prepare-release:
@@ -88,13 +91,11 @@ jobs:
88
91
# Check if *branch_name* already exists
89
92
if git ls-remote --exit-code origin "refs/heads/$branch_name"; then
90
93
echo "❌ Warning for $folder: Branch $branch_name already exists"
- exit 1
94
fi
95
git checkout -b "$branch_name"
96
97
if ! git push origin "$branch_name"; then
98
echo "❌ Error for $folder: Failed to push $branch_name"
99
100
101
commit_message=$(git log -1 --pretty=%s | cut -c1-50)
0 commit comments