Skip to content

Commit

Permalink
GHA fix publish upload files
Browse files Browse the repository at this point in the history
The gh release upload command take files not a directory.
  • Loading branch information
blowekamp committed Jul 21, 2023
1 parent 1e3cbf1 commit 14faec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create ${{ github.ref_name }} --repo ${{ github.repository }} --verify-tag --generate-notes --title "Release ${{ github.ref_name }}"
gh release upload ${{ github.ref_name }} --repo ${{ github.repository }} ${{steps.download.outputs.download-path}}
gh release upload ${{ github.ref_name }} --repo ${{ github.repository }} ${{steps.download.outputs.download-path}}/*
- name: bcbb-pypi upload
run: |
Expand Down

0 comments on commit 14faec5

Please sign in to comment.