Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
CI/CD: Fixed incorrect path on build upload to GH release
Browse files Browse the repository at this point in the history
  • Loading branch information
Seluj78 committed Jun 9, 2024
1 parent ea4304c commit 33a73e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/flask_utils-${{ needs.set_version.outputs.version }}-py3-none-any.whl
asset_path: ./dist/Flask_Utils-${{ needs.set_version.outputs.version }}-py3-none-any.whl
asset_name: flask_utils-${{ needs.set_version.outputs.version }}-py3-none-any.whl
asset_content_type: application/zip
- name: Upload .tar.gz artifact to GitHub release
Expand Down
2 changes: 1 addition & 1 deletion flask_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Increment versions here according to SemVer
__version__ = "0.1.4"
__version__ = "0.1.5"

from flask_utils.errors import ConflictError
from flask_utils.errors import ForbiddenError
Expand Down

0 comments on commit 33a73e4

Please sign in to comment.