Skip to content

Commit 14a165e

Browse files
committed
chore: workflow
1 parent 53268ea commit 14a165e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ jobs:
2222
shell: bash
2323
run: |
2424
mkdir build && cd build
25-
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=$RUNNER_WORKSPACE
25+
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=$RUNNER_WORKSPACE -DCMAKE_INSTALL_PREFIX=bin
2626
cmake --build . --target skipper
27-
ditto -c -k --keepParent skipper.app skipper.zip
27+
cmake --install .
28+
ditto -c -k --keepParent bin/skipper.app skipper.zip
2829
mv skipper.zip skipper-${{ github.ref_name }}-darwin-arm64.zip
2930
- name: release
3031
uses: softprops/action-gh-release@v2

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
cmake-build-debug
22
.idea
33
.DS_Store
4+
build

0 commit comments

Comments
 (0)