diff options
author | Neo Zhang Jianyu <jianyu.zhang@intel.com> | 2024-03-27 09:47:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-27 09:47:06 +0800 |
commit | a4f569e8a316cbd33d2b4de94b694d111507475a (patch) | |
tree | a32ac1605218e731e640d47a51ebca921bfc9b9e | |
parent | 32c8486e1f0297393cb22ac0a0d26a6b17ad4d54 (diff) |
[SYCL] fix no file in win rel (#6314)
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9329b94e..012ab03f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -840,7 +840,7 @@ jobs: id: pack_artifacts if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }} run: | - 7z a llama-${{ steps.tag.outputs.name }}-bin-win-sycl-x64.zip .\build\bin\* + 7z a llama-${{ steps.tag.outputs.name }}-bin-win-sycl-x64.zip ./build/bin/* - name: Upload artifacts if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }} |