Skip to content

Commit

Permalink
Update check-commit.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
justinvforvendetta authored Jan 31, 2024
1 parent b0d3207 commit 73e896a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/check-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@ jobs:
- name: make .dmg
run: make deploy

- name: move and zip .dmg
run: mv /Users/runner/work/verge/verge/verge-qt.dmg ~/ && zip verge-macos.zip ~/verge-qt.dmg

- uses: actions/upload-artifact@v4
with:
name: verge-macos.zip
path: |
*.zip
linux:
runs-on: ubuntu-latest

Expand Down Expand Up @@ -58,6 +67,15 @@ jobs:
- name: make check
run: make check -j4

- name: zip binaries
run: zip verge-linux.zip ./src/verged ./src/verge-cli ./src/verge-tx ./src/qt/verge-qt

- uses: actions/upload-artifact@v4
with:
name: verge-linux.zip
path: |
*.zip
windows:
runs-on: ubuntu-latest

Expand All @@ -84,3 +102,12 @@ jobs:

- name: make
run: make -j2

- name: zip up GUI Wallet and CLI utils
run: mv /home/runner/work/verge/verge/src/verged.exe ~/ && mv /home/runner/work/verge/verge/src/verge-cli.exe ~/ && mv /home/runner/work/verge/verge/src/verge-tx.exe ~/ && mv /home/runner/work/verge/verge/src/qt/verge-qt.exe ~/ && zip verge-windows.zip ~/verge-qt.exe ~/verge-tx.exe ~/verged.exe ~/verge-cli.exe

- uses: actions/upload-artifact@v4
with:
name: verge-windows.zip
path: |
*.zip

0 comments on commit 73e896a

Please sign in to comment.