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 7715889 commit 93850de
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,23 @@ jobs:
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_name: alphaDIA-darwin-arm64-${{ needs.Version_Bumped.outputs.version }}.zip
asset_content_type: application/zip
asset_content_type: application/zip
Create_Win_GUI:
runs-on: windows-latest
needs: Create_Draft_On_GitHub
steps:
- name : Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
- name: Install dependencies
run: |
cd gui
npm install
- name: Build GUI
run: |
cd gui
npm run make
- name: List output files
run: |
ls -R out/make

0 comments on commit 93850de

Please sign in to comment.