Skip to content

Commit d564a06

Browse files
committed
Fix mac Actions issues?
1 parent 6cbea5c commit d564a06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ jobs:
2525

2626
build-mac:
2727
name: Build App for macOS
28-
runs-on: macos-11
28+
runs-on: macos-latest
2929
steps:
3030
- name: Checkout code
3131
uses: actions/checkout@v2
3232
with:
3333
submodules: true
3434
- name: Configure
3535
run: mkdir -p build; cd build; cmake -G "Xcode" -DCMAKE_BUILD_TYPE=Release ..
36-
- name: Builld
37-
run: cd build; cmake --build . --config release --target install
36+
- name: Build
37+
run: cd build; cmake --build . --config Release --target install
3838
- name: Archive and upload artifacts
3939
uses: actions/upload-artifact@v2
4040
with:

0 commit comments

Comments
 (0)