Skip to content

Commit

Permalink
Another attempted release fix
Browse files Browse the repository at this point in the history
  • Loading branch information
urschrei committed Sep 12, 2024
1 parent b3da033 commit da8c952
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,16 @@ jobs:

- name: Download compressed artifacts
id: download
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v4
with:
path: ./artifacts
merge-multiple: true

- name: Create release and upload wheels
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: "${{ steps.download.outputs.download-path }}/**/*.whl,${{ steps.download.outputs.download-path }}/**/*.gz,${{ steps.download.outputs.download-path }}/**/*.so,${{ steps.download.outputs.download-path }}/**/*.dylib,${{ steps.download.outputs.download-path }}/**/*.lib,${{ steps.download.outputs.download-path }}/**/*.dll"
artifacts: "${{ steps.download.outputs.download-path }}/*.whl,${{ steps.download.outputs.download-path }}/*.gz,${{ steps.download.outputs.download-path }}/*.so,${{ steps.download.outputs.download-path }}/*.dylib,${{ steps.download.outputs.download-path }}/*.lib,${{ steps.download.outputs.download-path }}/*.dll"
token: ${{ secrets.GITHUB_TOKEN }}

- name: PyPI Publish
Expand Down

0 comments on commit da8c952

Please sign in to comment.