Skip to content

Commit

Permalink
Fix release fails for wrong filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
danyeaw committed Sep 9, 2023
1 parent 574dc99 commit cf1b178
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ jobs:
runs-on: windows-latest
timeout-minutes: 75
if: "!contains(github.event.head_commit.message, 'skip ci')"
outputs:
targz: gvsbuild-${{ steps.meta.outputs.version }}.tar.gz
wheel: gvsbuild-${{ steps.meta.outputs.version }}-py3-none-any.whl
strategy:
matrix:
gtk-version: ['3', '4']
Expand Down Expand Up @@ -174,12 +171,12 @@ jobs:
- name: Download tar.gz
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
with:
name: ${{ needs.build.outputs.targz }}
name: gvsbuild-${{ github.event.release.tag_name }}.tar.gz
path: dist
- name: Download wheel
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
with:
name: ${{ needs.build.outputs.wheel }}
name: gvsbuild-${{ github.event.release.tag_name }}-py3-none-any.whl
path: dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@f5622bde02b04381239da3573277701ceca8f6a0 # release/v1

0 comments on commit cf1b178

Please sign in to comment.