Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: comment line
  • Loading branch information
alucardzom committed Jul 3, 2025
commit c115d1e6448ed724faf4a80feddad2d28f7143d5
12 changes: 7 additions & 5 deletions .github/scripts/create-platform-release-pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,16 @@ get_release_branch_name() {
if [ "$TEST_ONLY" == "true" ]; then
echo "release-testing/${new_version}"
return 0
elif
echo "${new_version}"
fi

# Different release branch naming for different platforms
if [[ "$platform" == "mobile" ]]; then
echo "release/${new_version}"
elif [[ "$platform" == "extension" ]]; then
echo "Version-v${new_version}"
fi
# if [[ "$platform" == "mobile" ]]; then
# echo "release/${new_version}"
# elif [[ "$platform" == "extension" ]]; then
# echo "Version-v${new_version}"
# fi
}

# Main Script
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ jobs:
uses: actions/checkout@v4
with:
repository: MetaMask/github-tools
ref: ${{ inputs.github-tools-version }}
# ref: ${{ inputs.github-tools-version }}
ref: ${{ github.action_ref}}
path: github-tools

# Step 3: Setup environment from github-tools
Expand Down Expand Up @@ -128,3 +129,4 @@ jobs:
${{ inputs.previous-version-tag }} \
${{ inputs.semver-version }} \
${{ inputs.mobile-build-version }}

Loading