We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4e7901 commit 56bcd83Copy full SHA for 56bcd83
1 file changed
.github/workflows/build.yml
@@ -5,6 +5,10 @@ on:
5
branches: [master, feature/**]
6
pull_request:
7
branches: [master]
8
+ workflow_dispatch:
9
+
10
+permissions:
11
+ contents: read
12
13
jobs:
14
build-macos:
@@ -13,7 +17,14 @@ jobs:
17
- uses: actions/checkout@v4
18
15
19
- name: Configure
16
- run: cmake -B build
20
+ run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
21
22
- name: Build
- run: cmake --build build
23
+ run: cmake --build build --config Release
24
25
+ - name: Upload workflow artifact
26
+ uses: actions/upload-artifact@v4
27
+ with:
28
+ name: psn-macos-release
29
+ path: build/examples/psn_*
30
+ if-no-files-found: error
0 commit comments