Skip to content

Commit

Permalink
Merge pull request #422 from LerianStudio/chore/no_error_action
Browse files Browse the repository at this point in the history
Chore: no error action
  • Loading branch information
maxwelbm authored Dec 23, 2024
2 parents 983588e + e1148ad commit 6f96c69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/packages-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
# Check if the release is beta
if [[ "$TAG_NAME" == *"-beta"* ]]; then
echo "This is a beta release. Skipping."
exit 1
exit 0
fi
# Check if the release is hotfix
if [[ "$TAG_NAME" == *"-hf"* ]]; then
echo "This is a hotfix release. Skipping."
exit 1
exit 0
fi
# Determine the branch where the tag was created
Expand Down

0 comments on commit 6f96c69

Please sign in to comment.