Lose the top level zip.

This commit is contained in:
K. S. Ernest (iFire) Lee 2021-11-17 16:02:42 -08:00
parent 8cae0d5e1a
commit 9374ec5c5f
1 changed files with 18 additions and 14 deletions

View File

@ -81,14 +81,15 @@ jobs:
- name: Copy licenses - name: Copy licenses
run: | run: |
cp sdk/Windows/2020.2/License.rtf build/thirdparty-license.rtf mkdir -p result
cp LICENSE build/LICENSE cp sdk/Windows/2020.2/License.rtf result/thirdparty-license.rtf
cp LICENSE result/LICENSE
cp build/FBX2glTF result/FBX2glTF
shell: bash shell: bash
- uses: papeloto/action-zip@v1 - uses: papeloto/action-zip@v1
working-directory: build
with: with:
files: build/Release/FBX2glTF.exe build/thirdparty-license.rtf build/LICENSE files: result
recursive: false recursive: false
dest: fbx2gltf-windows.zip dest: fbx2gltf-windows.zip
@ -175,16 +176,18 @@ jobs:
- name: Copy licenses - name: Copy licenses
run: | run: |
cp sdk/Linux/2020.2/License.txt build/thirdparty-license.txt mkdir -p result
cp LICENSE build/LICENSE cp sdk/Linux/2020.2/License.txt result/thirdparty-license.txt
cp LICENSE result/LICENSE
cp build/FBX2glTF result/FBX2glTF
shell: bash shell: bash
- uses: papeloto/action-zip@v1 - uses: papeloto/action-zip@v1
working-directory: build working-directory: build
with: with:
files: build/FBX2glTF build/thirdparty-license.txt build/LICENSE files: result
recursive: false recursive: false
dest: build/fbx2gltf-linux.zip dest: fbx2gltf-linux.zip
- uses: "marvinpinto/action-automatic-releases@latest" - uses: "marvinpinto/action-automatic-releases@latest"
with: with:
@ -278,16 +281,17 @@ jobs:
- name: Copy licenses - name: Copy licenses
run: | run: |
cp sdk/Darwin/2020.2/License.rtf build/thirdparty-license.rtf mkdir -p result
cp LICENSE build/LICENSE cp sdk/Darwin/2020.2/License.rtf result/thirdparty-license.rtf
cp LICENSE result/LICENSE
cp build/FBX2glTF result/FBX2glTF
shell: bash shell: bash
- uses: papeloto/action-zip@v1 - uses: papeloto/action-zip@v1
working-directory: build
with: with:
files: build/FBX2glTF build/thirdparty-license.rtf build/LICENSE files: result
recursive: false recursive: false
dest: build/fbx2gltf-macos.zip dest: fbx2gltf-macos.zip
- uses: "marvinpinto/action-automatic-releases@latest" - uses: "marvinpinto/action-automatic-releases@latest"
with: with: