Skip to content

Commit

Permalink
pack and upload
Browse files Browse the repository at this point in the history
  • Loading branch information
rex-schilasky committed Feb 4, 2024
1 parent 11d7c7f commit ee7beeb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -281,3 +281,13 @@ jobs:
# - name: Run Tests
# run: ctest -V
# working-directory: ${{ runner.workspace }}/_build

- name: Pack
run: cpack -G DragNDrop
working-directory: ${{ runner.workspace }}/_build

- name: Upload DMG
uses: actions/upload-artifact@v3
with:
name: macos-dmg
path: ${{ runner.workspace }}/_build/_package/*.dmg
10 changes: 10 additions & 0 deletions .github/workflows/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -287,3 +287,13 @@ jobs:
- name: Run Tests
run: ctest -V
working-directory: ${{ runner.workspace }}/_build

- name: Pack
run: cpack -C Release
working-directory: ${{ runner.workspace }}/_build

- name: Upload Debian
uses: actions/upload-artifact@v3
with:
name: ubuntu-debian
path: ${{ runner.workspace }}/_build/_package/*.deb

0 comments on commit ee7beeb

Please sign in to comment.