Skip to content

Commit

Permalink
Merge pull request #182 from shutter-network/fix/174-add-staging-branch
Browse files Browse the repository at this point in the history
Fix/174 add staging branch
  • Loading branch information
ylembachar authored Oct 22, 2024
2 parents 9e71ea9 + 1786726 commit d5a22ab
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ jobs:
echo "Branch name: $BRANCH_NAME"
# Allow 'staging' and 'main' branches without a version bump
if [[ "$BRANCH_NAME" == "staging" || "$BRANCH_NAME" == "main" ]]; then
echo "No version bump required for 'staging' or 'main' branch."
exit 0
fi
# Determine version bump based on branch name
if [[ "$BRANCH_NAME" == release/* ]]; then
VERSION_BUMP="major"
Expand Down

0 comments on commit d5a22ab

Please sign in to comment.