Skip to content

Commit cd6c982

Browse files
committed
Use proper conan install.
1 parent 9b55f6b commit cd6c982

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,14 +233,19 @@ jobs:
233233

234234
- name: Conan install
235235
run: |
236-
conan install . -i build -s build_type=Release --build missing arch=x86_64
236+
conan install . -i build -s build_type=Release --build missing --settings arch=x86_64
237237
shell: bash
238238

239239
- name: Conan build
240240
run: |
241241
conan build -bf build .
242242
shell: bash
243243

244+
- name: Adhoc signature
245+
run: |
246+
codesign -s - --options=runtime build/FBX2glTF
247+
shell: bash
248+
244249
- uses: actions/upload-artifact@v2
245250
with:
246251
name: FBX2glTF-macos
@@ -322,13 +327,18 @@ jobs:
322327

323328
- name: Conan install
324329
run: |
325-
conan install . -i build -s build_type=Release --build missing arch=armv8
330+
conan install . -i build -s build_type=Release --build missing --settings arch=armv8
326331
shell: bash
327332

328333
- name: Conan build
329334
run: |
330335
conan build -bf build .
331336
shell: bash
337+
338+
- name: Adhoc signature
339+
run: |
340+
codesign -s - --options=runtime build/FBX2glTF
341+
shell: bash
332342

333343
- uses: actions/upload-artifact@v2
334344
with:

0 commit comments

Comments
 (0)