Skip to content

Commit

Permalink
gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgWa committed Jul 19, 2023
1 parent 93850de commit abfc3c6
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ jobs:
npm run make
- name: List output files
run: |
ls out/make/zip/darwin/arm64
ls gui/out/make/zip/darwin/arm64
- name: Upload a Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.Create_Draft_On_GitHub.outputs.upload_url }}
asset_path: out/make/zip/darwin/arm64/alphaDIA-darwin-arm64-${{ needs.Version_Bumped.outputs.version }}.zip
asset_path: gui/out/make/zip/darwin/arm64/alphaDIA-darwin-arm64-${{ needs.Version_Bumped.outputs.version }}.zip
asset_name: alphaDIA-darwin-arm64-${{ needs.Version_Bumped.outputs.version }}.zip
asset_content_type: application/zip
Create_Win_GUI:
Expand All @@ -89,4 +89,13 @@ jobs:
npm run make
- name: List output files
run: |
ls -R out/make
ls -R gui/out/make
- name: Upload a Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.Create_Draft_On_GitHub.outputs.upload_url }}
asset_path: gui/out/make/zip/win32/x64/alphaDIA-win32-x64-${{ needs.Version_Bumped.outputs.version }}.zip
asset_name: alphaDIA-win32-x64-${{ needs.Version_Bumped.outputs.version }}.zip
asset_content_type: application/zip

0 comments on commit abfc3c6

Please sign in to comment.