From ddc50a9d7cea74fe0bb3ec29daa2046a8bec5cfc Mon Sep 17 00:00:00 2001 From: okada Date: Sat, 2 Dec 2023 18:02:02 +0900 Subject: [PATCH] upload --- .github/workflows/build.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index aaac939..c628f13 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -84,6 +84,13 @@ jobs: cd dist zip -ry flatline_lsp_ubuntu2004_${{ matrix.build }}.zip flatline_lsp + - name: Upload package + id: upload_package + uses: actions/upload-artifact@v2 + with: + name: flatline_lsp_ubuntu2004_${{ matrix.build }}.zip + path: dist/flatline_lsp_ubuntu2004_${{ matrix.build }}.zip + create-release: runs-on: ubuntu-latest needs: [build-release-ubuntu-2004] @@ -114,7 +121,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./dist/flatline_lsp_ubuntu2004_openblas.zip + asset_path: dist/flatline_lsp_ubuntu2004_openblas.zip asset_name: flatline_lsp_ubuntu2004_openblas.zip asset_content_type: application/zip @@ -125,6 +132,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./dist/flatline_lsp_ubuntu2004_cublas.zip + asset_path: dist/flatline_lsp_ubuntu2004_cublas.zip asset_name: flatline_lsp_ubuntu2004_cublas.zip asset_content_type: application/zip