Make sure to unbind imported textures when destroying one #3950
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android | |
on: | |
push: | |
branches: | |
- main | |
- release | |
- rc/** | |
jobs: | |
build-android: | |
name: build-android | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3.3.0 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Run build script | |
run: | | |
cd build/android && printf "y" | ./build.sh continuous | |
- uses: actions/upload-artifact@v1.0.0 | |
with: | |
name: filament-android | |
path: out/filament-android-release.aar | |
- uses: actions/upload-artifact@v1.0.0 | |
with: | |
name: filamat-android-full | |
path: out/filamat-android-release.aar | |
- uses: actions/upload-artifact@v1.0.0 | |
with: | |
name: gltfio-android-release | |
path: out/gltfio-android-release.aar | |
- uses: actions/upload-artifact@v1.0.0 | |
with: | |
name: filament-utils-android-release | |
path: out/filament-utils-android-release.aar |