Skip to content

Commit

Permalink
upload
Browse files Browse the repository at this point in the history
  • Loading branch information
okdshin committed Dec 2, 2023
1 parent fd7b5e0 commit ddc50a9
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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

Expand All @@ -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

0 comments on commit ddc50a9

Please sign in to comment.