Change slashes.
This commit is contained in:
parent
ab4582036c
commit
af9b9c5297
|
@ -58,20 +58,23 @@ jobs:
|
||||||
|
|
||||||
- name: Conan install
|
- name: Conan install
|
||||||
run: |
|
run: |
|
||||||
|
cd FBX2glTF
|
||||||
conan install . -i build -s build_type=Release -s compiler="Visual Studio" --build fmt --build libiconv --build=libxml2 --build=zlib --build=bzip
|
conan install . -i build -s build_type=Release -s compiler="Visual Studio" --build fmt --build libiconv --build=libxml2 --build=zlib --build=bzip
|
||||||
shell: cmd
|
shell: cmd
|
||||||
|
|
||||||
- name: Conan build
|
- name: Conan build
|
||||||
run: |
|
run: |
|
||||||
|
cd FBX2glTF
|
||||||
conan build -bf build .
|
conan build -bf build .
|
||||||
shell: cmd
|
shell: cmd
|
||||||
|
|
||||||
- name: Move build
|
- name: Move build
|
||||||
run: |
|
run: |
|
||||||
move build\Release\FBX2glTF.exe build\Release\FBX2glTF-windows-x64.exe
|
cd FBX2glTF
|
||||||
|
move build/Release/FBX2glTF.exe build/Release/FBX2glTF-windows-x64.exe
|
||||||
shell: cmd
|
shell: cmd
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: FBX2glTF.exe
|
name: FBX2glTF.exe
|
||||||
path: build/Release/FBX2glTF-windows-x64.exe
|
path: FBX2glTF/build/Release/FBX2glTF-windows-x64.exe
|
||||||
|
|
Loading…
Reference in New Issue