Skip to content

Commit

Permalink
Actually include assets and .so file
Browse files Browse the repository at this point in the history
  • Loading branch information
Dextinfire committed Oct 7, 2024
1 parent 0e1a067 commit 9475a1f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,12 @@ jobs:
run: |
pushd "${{ github.workspace }}/release/${{ env.PresetName }}"
ls
mkdir -p "${{ github.workspace }}/android/src/main/assets/"
mv profiles "${{ github.workspace }}/android/src/main/assets/"
mv games "${{ github.workspace }}/android/src/main/assets/"
mv shaders "${{ github.workspace }}/android/src/main/assets/"
mkdir -p "${{ github.workspace }}/android/src/main/jniLibs/$ABI/"
mv libimpacto.so "${{ github.workspace }}/android/src/main/jniLibs/$ABI/"
mkdir -p "${{ github.workspace }}/android/app/src/main/assets/"
mv profiles "${{ github.workspace }}/android/app/src/main/assets/"
mv games "${{ github.workspace }}/android/app/src/main/assets/"
mv shaders "${{ github.workspace }}/android/app/src/main/assets/"
mkdir -p "${{ github.workspace }}/android/app/src/main/jniLibs/$ABI/"
mv libimpacto.so "${{ github.workspace }}/android/app/src/main/jniLibs/$ABI/"
popd
pushd "${{ github.workspace }}/android/"
./gradlew assemble
Expand Down

0 comments on commit 9475a1f

Please sign in to comment.