Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
intelligide committed Feb 4, 2023
2 parents 0c7f75b + 6dce6d7 commit 4c8a705
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 3 deletions.
37 changes: 35 additions & 2 deletions .github/workflows/package_generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ jobs:
name: AssimpNet
path: assimpnet/AssimpNet/bin/Release

- uses: actions/upload-artifact@v3
with:
name: AssimpNet
path: assimpnet/License.txt

build_assimp_win:
name: Build Assimp for Windows
if: inputs.buildWindows
Expand Down Expand Up @@ -109,6 +114,11 @@ jobs:
name: Assimp-Win-${{ matrix.BuildArch }}
path: ${{ runner.temp }}/bin/assimp.dll

- uses: actions/upload-artifact@v3
with:
name: Assimp-Win-${{ matrix.BuildArch }}
path: assimp-${{ inputs.AssimpVersion }}/LICENSE

build_assimp_linux:
name: Build Assimp for Linux
if: inputs.buildLinux
Expand Down Expand Up @@ -149,6 +159,11 @@ jobs:
name: Assimp-Linux-${{ matrix.BuildArch }}
path: ${{ runner.temp }}/lib/libassimp.so

- uses: actions/upload-artifact@v3
with:
name: Assimp-Linux-${{ matrix.BuildArch }}
path: assimp-${{ inputs.AssimpVersion }}/LICENSE

build_assimp_android:
name: Build Assimp for Android
if: inputs.buildAndroid
Expand Down Expand Up @@ -191,6 +206,11 @@ jobs:
name: Assimp-Android-${{ matrix.AndroidABI }}
path: ${{ runner.temp }}/lib/libassimp.so

- uses: actions/upload-artifact@v3
with:
name: Assimp-Android-${{ matrix.AndroidABI }}
path: assimp-${{ inputs.AssimpVersion }}/LICENSE

build_assimp_macos:
name: Build Assimp for Mac OS X
if: inputs.buildmacOS
Expand Down Expand Up @@ -228,6 +248,11 @@ jobs:
name: Assimp-macOS-${{ matrix.BuildArch }}
path: ${{ runner.temp }}/lib/libassimp.dylib

- uses: actions/upload-artifact@v3
with:
name: Assimp-macOS-${{ matrix.BuildArch }}
path: assimp-${{ inputs.AssimpVersion }}/LICENSE

build_assimp_ios:
name: Build Assimp for iOS
if: inputs.buildiOS
Expand Down Expand Up @@ -260,6 +285,11 @@ jobs:
name: Assimp-iOS-${{ matrix.BuildArch }}
path: assimp-${{ inputs.AssimpVersion }}/lib/iOS

- uses: actions/upload-artifact@v3
with:
name: Assimp-iOS-${{ matrix.BuildArch }}
path: assimp-${{ inputs.AssimpVersion }}/LICENSE

build_docs:
name: Build Docs
runs-on: 'ubuntu-latest'
Expand Down Expand Up @@ -350,8 +380,11 @@ jobs:
- name: Copy README
run: cp -f README.md ${{ env.PackageFolder }}/README.md

- name: Copy License
run: cp -f LICENSE.md ${{ env.PackageFolder }}/LICENSE.md
- name: Copy Assimp License
run: cp -f ${{ env.ArtifactTemporaryDir }}/Assimp-Win-x64/LICENSE ${{ env.PackageFolder }}/AssimpLicense.txt

- name: Copy AssimpNet License
run: cp -f ${{ env.ArtifactTemporaryDir }}/AssimpNet/License.txt ${{ env.PackageFolder }}/AssimpNetLicense.txt

- name: Delete gitkeep files
run: find ${{ env.PackageFolder }} -name '.gitkeep' -delete
Expand Down
1 change: 1 addition & 0 deletions packages/com.arsenstudio.assimp/AssimpLicense.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
placeholder
1 change: 1 addition & 0 deletions packages/com.arsenstudio.assimp/AssimpNetLicense.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
placeholder
7 changes: 7 additions & 0 deletions packages/com.arsenstudio.assimp/AssimpNetLicense.txt.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion packages/com.arsenstudio.assimp/LICENSE.md

This file was deleted.

0 comments on commit 4c8a705

Please sign in to comment.