We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53268ea commit 14a165eCopy full SHA for 14a165e
.github/workflows/build.yaml
@@ -22,9 +22,10 @@ jobs:
22
shell: bash
23
run: |
24
mkdir build && cd build
25
- cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=$RUNNER_WORKSPACE
+ cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=$RUNNER_WORKSPACE -DCMAKE_INSTALL_PREFIX=bin
26
cmake --build . --target skipper
27
- ditto -c -k --keepParent skipper.app skipper.zip
+ cmake --install .
28
+ ditto -c -k --keepParent bin/skipper.app skipper.zip
29
mv skipper.zip skipper-${{ github.ref_name }}-darwin-arm64.zip
30
- name: release
31
uses: softprops/action-gh-release@v2
.gitignore
@@ -1,3 +1,4 @@
1
cmake-build-debug
2
.idea
3
.DS_Store
4
+build
0 commit comments