Skip to content

Commit

Permalink
Update release_wheel.yml (#176)
Browse files Browse the repository at this point in the history
The github action uses [glob](https://www.npmjs.com/package/glob) to
match file names, this PR changes the regex pattern to glob to match
wheel names.
  • Loading branch information
yzh119 authored Mar 11, 2024
1 parent 68e979a commit 44d3c03
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,25 +73,25 @@ jobs:
with:
tag_name: ${{ inputs.tag_name }}
files: |
python/dist/flashinfer.*cp38.*.whl
python/dist/flashinfer*cp38*.whl
- uses: softprops/action-gh-release@v1
with:
tag_name: ${{ inputs.tag_name }}
files: |
python/dist/flashinfer.*cp39.*.whl
python/dist/flashinfer*cp39*.whl
- uses: softprops/action-gh-release@v1
with:
tag_name: ${{ inputs.tag_name }}
files: |
python/dist/flashinfer.*cp310.*.whl
python/dist/flashinfer*cp310*.whl
- uses: softprops/action-gh-release@v1
with:
tag_name: ${{ inputs.tag_name }}
files: |
python/dist/flashinfer.*cp311.*.whl
python/dist/flashinfer*cp311*.whl
- uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 44d3c03

Please sign in to comment.