Skip to content

Commit

Permalink
Revert "Fix readme_sync.yml unstable version check"
Browse files Browse the repository at this point in the history
This reverts commit 4d8f816.
  • Loading branch information
silvanocerza committed Oct 30, 2024
1 parent 4d8f816 commit c17477f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/readme_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# stable docs, for the time being we're ok with that.
# `main` branch docs will be handled correctly too and get pushed to an
# unstable documentation.
IS_UNSTABLE="$(hatch version | grep -v -q '0-rc')"
IS_UNSTABLE=$(hatch version | grep -v -q "0-rc")
if [ "$IS_UNSTABLE" ]; then
VERSION="$VERSION-unstable"
fi
Expand Down

0 comments on commit c17477f

Please sign in to comment.