Merge branch 'QuestCraftPlusPlus:master' into master #5
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: Build Wrapper | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build Wrapper | |
runs-on: windows-latest | |
steps: | |
# Checkout | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Cache | |
- uses: actions/cache@v3 | |
with: | |
path: Library | |
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }} | |
restore-keys: | | |
Library- | |
# Build | |
- name: Build APK | |
uses: game-ci/unity-builder@v4 | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
with: | |
targetPlatform: Android | |
customImage: 'unityci/editor:windows-2021.3.37f1-android-3.1.0' | |
androidExportType: androidPackage | |
androidTargetSdkVersion: 32 | |
# Export | |
- name: Export Project | |
uses: game-ci/unity-builder@v4 | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} | |
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
with: | |
targetPlatform: Android | |
customImage: 'unityci/editor:windows-2021.3.37f1-android-3.1.0' | |
buildsPath: exported | |
allowDirtyBuild: true | |
androidExportType: androidStudioProject | |
androidTargetSdkVersion: 32 | |
# Upload exported Android Studio project | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Exported | |
path: exported | |
update: | |
name: Update IL2CPP repo | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
repository: thewiilover/Wrapper-IL2CPP | |
token: ${{ secrets.PERSONAL_TOKEN }} | |
- name: Grab IL2CPP changes | |
uses: actions/download-artifact@v4 | |
with: | |
name: Exported | |
- name: Copy Changes | |
run: | | |
cp -rf $GITHUB_WORKSPACE/Android/Android/unityLibrary/src/main/assets unityLibrary/src/main | |
cp -rf $GITHUB_WORKSPACE/Android/Android/unityLibrary/src/main/jniLibs unityLibrary/src/main | |
rm -rf $GITHUB_WORKSPACE/unityLibrary/src/main/Il2CppOutputProject | |
cp -rf $GITHUB_WORKSPACE/Android/Android/unityLibrary/src/main/Il2CppOutputProject unityLibrary/src/main | |
cp -rf $GITHUB_WORKSPACE/Android/Android/unityLibrary/src/main/jniStaticLibs unityLibrary/src/main | |
cp -rf $GITHUB_WORKSPACE/Android/Android/unityLibrary/src/main/res unityLibrary/src/main | |
cp -rf $GITHUB_WORKSPACE/Android/Android/unityLibrary/src/main/resources unityLibrary/src/main | |
cp -rf $GITHUB_WORKSPACE/Android/Android/launcher/src/main/res launcher/src/main | |
cp -f $GITHUB_WORKSPACE/Android/Android/launcher/src/main/AndroidManifest.xml launcher/src/main/AndroidManifest.xml | |
- name: Commit files | |
run: | | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git commit -a -m "Auto-update" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
repository: thewiilover/Wrapper-IL2CPP | |
github_token: ${{ secrets.PERSONAL_TOKEN }} |