Move the outputs to the root.
This commit is contained in:
parent
db6b6bc303
commit
cc977f157f
|
@ -85,9 +85,8 @@ jobs:
|
||||||
- name: Copy licenses
|
- name: Copy licenses
|
||||||
run: |
|
run: |
|
||||||
mkdir -p result
|
mkdir -p result
|
||||||
cp sdk/Windows/2020.2/License.rtf result/thirdparty-license.rtf
|
cp sdk/Windows/2020.2/License.rtf thirdparty-license.rtf
|
||||||
cp LICENSE result/LICENSE
|
cp build/Release/FBX2glTF.exe FBX2glTF.exe
|
||||||
cp build/Release/FBX2glTF.exe result/FBX2glTF.exe
|
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- uses: "marvinpinto/action-automatic-releases@latest"
|
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
|
@ -97,9 +96,9 @@ jobs:
|
||||||
automatic_releases_tag: windows-${{github.ref_name}}
|
automatic_releases_tag: windows-${{github.ref_name}}
|
||||||
title: FBX2glTF Windows packages
|
title: FBX2glTF Windows packages
|
||||||
files: |
|
files: |
|
||||||
result/thirdparty-license.rtf
|
thirdparty-license.rtf
|
||||||
result/LICENSE
|
LICENSE
|
||||||
result/FBX2glTF.exe
|
FBX2glTF.exe
|
||||||
build-ubuntu:
|
build-ubuntu:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
|
@ -176,9 +175,8 @@ jobs:
|
||||||
- name: Copy licenses
|
- name: Copy licenses
|
||||||
run: |
|
run: |
|
||||||
mkdir -p result
|
mkdir -p result
|
||||||
cp sdk/Linux/2020.2/License.txt result/thirdparty-license.txt
|
cp sdk/Linux/2020.2/License.txt thirdparty-license.txt
|
||||||
cp LICENSE result/LICENSE
|
cp build/FBX2glTF FBX2glTF
|
||||||
cp build/FBX2glTF result/FBX2glTF
|
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- uses: "marvinpinto/action-automatic-releases@latest"
|
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
|
@ -188,9 +186,9 @@ jobs:
|
||||||
automatic_releases_tag: linux-${{github.ref_name}}
|
automatic_releases_tag: linux-${{github.ref_name}}
|
||||||
title: FBX2glTF Linux packages
|
title: FBX2glTF Linux packages
|
||||||
files: |
|
files: |
|
||||||
result/thirdparty-license.rtf
|
thirdparty-license.rtf
|
||||||
result/LICENSE
|
LICENSE
|
||||||
result/FBX2glTF
|
FBX2glTF
|
||||||
|
|
||||||
build-macos-x86_64:
|
build-macos-x86_64:
|
||||||
runs-on: macos-11
|
runs-on: macos-11
|
||||||
|
@ -276,9 +274,8 @@ jobs:
|
||||||
- name: Copy licenses
|
- name: Copy licenses
|
||||||
run: |
|
run: |
|
||||||
mkdir -p result
|
mkdir -p result
|
||||||
cp sdk/Darwin/2020.2/License.rtf result/thirdparty-license.rtf
|
cp sdk/Darwin/2020.2/License.rtf thirdparty-license.rtf
|
||||||
cp LICENSE result/LICENSE
|
cp build/FBX2glTF FBX2glTF
|
||||||
cp build/FBX2glTF result/FBX2glTF
|
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- uses: "marvinpinto/action-automatic-releases@latest"
|
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
|
@ -288,6 +285,6 @@ jobs:
|
||||||
prerelease: false
|
prerelease: false
|
||||||
title: FBX2glTF Macos x86_64 packages
|
title: FBX2glTF Macos x86_64 packages
|
||||||
files: |
|
files: |
|
||||||
result/thirdparty-license.rtf
|
thirdparty-license.rtf
|
||||||
result/LICENSE
|
LICENSE
|
||||||
result/FBX2glTF
|
FBX2glTF
|
||||||
|
|
Loading…
Reference in New Issue