From da83bf8a27a99d5d2c827c2a45d362161b672dfc Mon Sep 17 00:00:00 2001 From: jinbridge <2635480475@qq.com> Date: Thu, 2 Nov 2023 23:49:16 +0800 Subject: [PATCH] cicd: add upload artifact --- .../workflows/bigdl-release-portable-executable-zip.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/bigdl-release-portable-executable-zip.yml b/.github/workflows/bigdl-release-portable-executable-zip.yml index 508cfcdd130..be659968d6f 100644 --- a/.github/workflows/bigdl-release-portable-executable-zip.yml +++ b/.github/workflows/bigdl-release-portable-executable-zip.yml @@ -22,6 +22,10 @@ jobs: - name: run bat run: '& cd ./python/llm/portable-zip; ./setup.bat' shell: powershell + - uses: actions/upload-artifact@v3 + with: + name: portable-zip + path: ./python/llm/portable-zip/bigdl-llm.zip build-zip-gui: runs-on: [self-hosted, llm, windows] @@ -31,3 +35,7 @@ jobs: - name: run bat run: '& cd ./python/llm/portable-zip; ./setup.bat --ui' shell: powershell + - uses: actions/upload-artifact@v3 + with: + name: portable-zip + path: ./python/llm/portable-zip/bigdl-llm-ui.zip