Skip to content

Commit

Permalink
hotfix: Correct naming of releases
Browse files Browse the repository at this point in the history
  • Loading branch information
aelmiger committed Jul 17, 2024
1 parent 8b348d4 commit 2499805
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy_to_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
outputs:
new_tag: ${{ steps.create_tag.outputs.new_tag }}
version: ${{ steps.get_version.outputs.VERSION }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -110,15 +111,15 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
run: >-
gh release create
'${{ github.ref_name }}'
'${{ needs.auto-tag.outputs.version }}'
--repo '${{ github.repository }}'
--notes ""
- name: Upload artifact signatures to GitHub Release
env:
GITHUB_TOKEN: ${{ github.token }}
run: >-
gh release upload
'${{ github.ref_name }}' dist/**
'${{ needs.auto-tag.outputs.version }}' dist/**
--repo '${{ github.repository }}'
publish-to-testpypi:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPLv3"}

version = "1.3.8"
version = "1.3.9"

dynamic = ["dependencies"]

Expand Down

0 comments on commit 2499805

Please sign in to comment.