Skip to content

Commit

Permalink
ci: remove trailing comma in sed
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdadams committed Feb 23, 2023
1 parent 8b9e5af commit aad4f5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: 👊 Bump version
run: |
TAG=$(gh release view --json tagName --jq ".tagName")
sed -i "s/__version__ = .*$/__version__ = '$TAG',/" src/supervisor/version.py
sed -i "s/__version__ = .*$/__version__ = '$TAG'/" src/supervisor/version.py
- name: Install wheel
run: pip install wheel
Expand Down
2 changes: 1 addition & 1 deletion src/supervisor/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""A single source of truth for the version in a programatically-accessible variable.
This must only include a single line: __version__ = 'x.y.z'
This must only include a single line: __version__ = '0.0.0'
"""

#: This will be automatically set by the publish action when it is uploaded to pypi; only change this for local dev
Expand Down

0 comments on commit aad4f5a

Please sign in to comment.