Skip to content

Commit

Permalink
Fix readme_sync.yml unstable version check
Browse files Browse the repository at this point in the history
  • Loading branch information
silvanocerza committed Oct 30, 2024
1 parent afdeaf5 commit 8271b2d
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 8271b2d

Please sign in to comment.