Skip to content

Commit

Permalink
fix: package name in release asset path
Browse files Browse the repository at this point in the history
  • Loading branch information
EuleMitKeule committed Oct 3, 2023
1 parent 127f1db commit 2fde52c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.PAT }}
with:
upload_url: ${{ needs.version.outputs.upload_url }}
asset_path: ${{ github.workspace }}/dist/${{ github.event.repository.name }}-${{ needs.version.outputs.version }}.tar.gz
asset_name: ${{ github.event.repository.name }}-${{ needs.version.outputs.version }}.tar.gz
asset_path: ./dist/europa_1400_tools-${{ needs.version.outputs.version }}.tar.gz
asset_name: europa_1400_tools-${{ needs.version.outputs.version }}.tar.gz
asset_content_type: application/gzip

- name: Upload wheel to release
Expand All @@ -126,6 +126,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.PAT }}
with:
upload_url: ${{ needs.version.outputs.upload_url }}
asset_path: ${{ github.workspace }}/dist/${{ github.event.repository.name }}-${{ needs.version.outputs.version }}-py3-none-any.whl
asset_name: ${{ github.event.repository.name }}-${{ needs.version.outputs.version }}-py3-none-any.whl
asset_path: ./dist/europa_1400_tools-${{ needs.version.outputs.version }}-py3-none-any.whl
asset_name: europa_1400_tools-${{ needs.version.outputs.version }}-py3-none-any.whl
asset_content_type: application/zip

0 comments on commit 2fde52c

Please sign in to comment.