Skip to content

Commit

Permalink
fix(workflows): default set of tag
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterLaplace committed Nov 28, 2023
1 parent 1d242c5 commit f44407c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/increment_major.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if [[ -z "$latest_tag" ]]; then
echo "Failed to get the latest tag."
exit 1
latest_tag="v0.0.0"
fi
# Extract the major, minor, and patch versions from the tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/increment_minor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if [[ -z "$latest_tag" ]]; then
echo "Failed to get the latest tag."
exit 1
latest_tag="v0.0.0"
fi
# Extract the major, minor, and patch versions from the tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/increment_patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
old_patch_version="${BASH_REMATCH[3]}"
else
echo "Failed to parse the latest tag version."
exit 1
latest_tag="v0.0.0"
fi
# Increment the patch version
Expand Down

0 comments on commit f44407c

Please sign in to comment.