From d28d5d138367ca2b444147c55d6d7beeaae4d807 Mon Sep 17 00:00:00 2001 From: "K. S. Ernest (iFire) Lee" Date: Wed, 17 Nov 2021 14:49:24 -0800 Subject: [PATCH] Add licenses to zip. --- .github/workflows/build.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5c9567c..231cc62 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -78,6 +78,12 @@ jobs: with: name: FBX2glTF-windows.exe path: build/Release/FBX2glTF.exe + + - name: Copy licenses + run: | + cp sdk/Windows/2020.2/License.rtf build/LICENSE.thirdparty.rtf + cp LICENSE build/LICENSE + shell: bash - name: Archive Release uses: thedoctor0/zip-release@master @@ -168,6 +174,12 @@ jobs: name: FBX2glTF-linux path: build/FBX2glTF + - name: Copy licenses + run: | + cp sdk/Linux/2020.2/License.rtf build/LICENSE.thirdparty.rtf + cp LICENSE build/LICENSE + shell: bash + - name: Archive Release uses: thedoctor0/zip-release@master with: @@ -274,6 +286,12 @@ jobs: directory: build path: FBX2glTF + - name: Copy licenses + run: | + cp sdk/Darwin/2020.2/License.rtf build/LICENSE.thirdparty.rtf + cp LICENSE build/LICENSE + shell: bash + - uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}"