Skip to content

Commit

Permalink
fix: Fix quoting in version
Browse files Browse the repository at this point in the history
  • Loading branch information
tjtharrison committed Nov 8, 2024
1 parent 5c4aed9 commit 5610935
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
NEW_VERSION: ${{ steps.release.outputs.NEW_RELEASE }}
run: |
echo "$NEW_VERSION"
sed -i 's/\".*\"/'"$NEW_VERSION"'/g' _version.py
sed -i 's/\".*\"/'\"$NEW_VERSION\"'/g' _version.py
- name: Commit version file
uses: stefanzweifel/git-auto-commit-action@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion _version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = v3.2.2
__version__ = "v3.2.2"

0 comments on commit 5610935

Please sign in to comment.