Skip to content

Commit

Permalink
Remove a check
Browse files Browse the repository at this point in the history
  • Loading branch information
stultusmundi committed Oct 27, 2024
1 parent e20ba5a commit c2ff615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Check for version bump
id: version_check
run: |
if [ "$(printf '%s\n' "$LATEST_VERSION" "$CURRENT_VERSION" | sort -V | tail -n1)" = "$CURRENT_VERSION" ] && [ "$CURRENT_VERSION" != "$LATEST_VERSION" ]; then
if [ "$CURRENT_VERSION" != "$LATEST_VERSION" ]; then
echo "version_bumped=true" >> $GITHUB_ENV
else
echo "version_bumped=false" >> $GITHUB_ENV
Expand Down

0 comments on commit c2ff615

Please sign in to comment.