Skip to content

Commit

Permalink
Set nullglob in deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Jul 29, 2024
1 parent 65b7a77 commit 47d20c7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,6 @@ jobs:
GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.repository }}
shell: bash
run: gh release upload "${{ needs.release.outputs.tag }}" bindists/*.{tar.gz,zip}
run: |
shopt -s nullglob
gh release upload "${{ needs.release.outputs.tag }}" bindists/*.{tar.gz,zip}

0 comments on commit 47d20c7

Please sign in to comment.