Skip to content

Commit ee9f8fe

Browse files
committed
Defaults on Automatic Mac Deployment
1 parent 861eb5b commit ee9f8fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/mac-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ on:
3535

3636
jobs:
3737
build:
38-
runs-on: ${{ github.event.inputs.runner }}
38+
runs-on: ${{ github.event.inputs.runner || 'macos-13'}}
3939
steps:
4040
- name: Checkout Arduino-Source
4141
uses: actions/checkout@v4
@@ -57,7 +57,7 @@ jobs:
5757
5858
- uses: jurplel/install-qt-action@v4
5959
with:
60-
version: ${{ github.event.inputs.qt_version }}
60+
version: ${{ github.event.inputs.qt_version || "6.8.2"}}
6161
modules: 'qtmultimedia qtserialport'
6262

6363
- name: Build SerialPrograms.app
@@ -66,7 +66,7 @@ jobs:
6666
mkdir bin
6767
cd bin
6868
cmake .. -DUNIX_LINK_TESSERACT:BOOL=true -DCMAKE_BUILD_TYPE:STRING=Release
69-
cmake --build . -j ${{ github.event.inputs.jobs }}
69+
cmake --build . -j ${{ github.event.inputs.jobs || 4}}
7070
cp -r SerialPrograms.app ../../../SerialPrograms.app
7171
7272
# Important: GitHub MacOS runners do not have the lib area in its rpath by default. It must manually be added for frameworks to be discovered and added to the bundle

0 commit comments

Comments
 (0)