From 44d3c033d5b8d07d650057d25f17c0e3e9043f11 Mon Sep 17 00:00:00 2001 From: Zihao Ye Date: Mon, 11 Mar 2024 11:15:49 -0700 Subject: [PATCH] Update release_wheel.yml (#176) 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. --- .github/workflows/release_wheel.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release_wheel.yml b/.github/workflows/release_wheel.yml index bdea974a..56fa6312 100644 --- a/.github/workflows/release_wheel.yml +++ b/.github/workflows/release_wheel.yml @@ -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: