Skip to content

Commit

Permalink
no need for the module part
Browse files Browse the repository at this point in the history
  • Loading branch information
crackitty committed Oct 30, 2024
1 parent 9485075 commit f428850
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-books-universium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Get version from __version__.py
id: get_version
run: |
VERSION=$(python -c 'import sys; sys.path.insert(0, "${{ env.APP_PATH }}"); from my_package import __version__; print(__version__)')
VERSION=$(python -c 'exec(open("${{ env.APP_PATH }}/__version__.py").read()); print(__version__)')
echo "IMAGE_VERSION=$VERSION" >> $GITHUB_ENV
- name: Extract metadata (tags, labels) for Docker
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-demo-comics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Get version from __version__.py
id: get_version
run: |
VERSION=$(python -c 'import sys; sys.path.insert(0, "${{ env.APP_PATH }}"); from my_package import __version__; print(__version__)')
VERSION=$(python -c 'exec(open("${{ env.APP_PATH }}/__version__.py").read()); print(__version__)')
echo "IMAGE_VERSION=$VERSION" >> $GITHUB_ENV
- name: Extract metadata (tags, labels) for Docker
Expand Down
2 changes: 1 addition & 1 deletion books-universium/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.1"
__version__ = "0.1.1"
2 changes: 1 addition & 1 deletion demo-comics/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.21"
__version__ = "0.21"

0 comments on commit f428850

Please sign in to comment.