Free space up #6
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, workflow_dispatch] | |
jobs: | |
build: | |
name: Build Wrapper | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Free Disk Space for Android | |
run: | | |
sudo swapoff -a | |
sudo rm -f /swapfile | |
sudo apt clean | |
docker rmi $(docker images -q) | |
df -h | |
# 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:ubuntu-2021.3.37f1-android-3.1.0' | |
androidExportType: androidPackage | |
androidTargetSdkVersion: 32 | |
androidKeystoreName: user.keystore | |
androidKeystoreBase64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }} | |
androidKeystorePass: ${{ secrets.ANDROID_KEYSTORE_PASS }} | |
androidKeyaliasName: ${{ secrets.ANDROID_KEYALIAS_NAME }} | |
androidKeyaliasPass: ${{ secrets.ANDROID_KEYALIAS_PASS }} | |
# 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:ubuntu-2021.3.37f1-android-3.1.0' | |
buildsPath: exported | |
androidExportType: androidStudioProject | |
androidTargetSdkVersion: 32 | |
androidKeystoreName: qcxr.keystore | |
androidKeystoreBase64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }} | |
androidKeystorePass: ${{ secrets.ANDROID_KEYSTORE_PASS }} | |
androidKeyaliasName: ${{ secrets.ANDROID_KEYALIAS_NAME }} | |
androidKeyaliasPass: ${{ secrets.ANDROID_KEYALIAS_PASS }} | |
# Upload exported Android Studio project | |
- uses: actions/upload-artifact@v3 | |
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: QuestCraftPlusPlus/Wrapper-IL2CPP | |
- name: Grab IL2CPP changes | |
uses: actions/download-artifact@v4 | |
with: | |
name: Exported | |
- name: Copy Changes | |
run: | | |
cp -rf $GITHUB_WORKSPACE/Exported/Android/unityLibrary/src/main/assets unityLibrary/src/main/assets | |
cp -rf $GITHUB_WORKSPACE/Exported/Android/unityLibrary/src/main/jniLibs unityLibrary/src/main/jniLibs | |
cp -rf $GITHUB_WORKSPACE/Exported/Android/unityLibrary/src/main/Il2CppOutputProject unityLibrary/src/main/Il2CppOutputProject | |
cp -rf $GITHUB_WORKSPACE/Exported/Android/unityLibrary/src/main/jniStaticLibs unityLibrary/src/main/jniStaticLibs | |
cp -rf $GITHUB_WORKSPACE/Exported/Android/unityLibrary/src/main/res unityLibrary/src/main/res | |
cp -rf $GITHUB_WORKSPACE/Exported/Android/unityLibrary/src/main/resources unityLibrary/src/main/resources | |
cp -rf $GITHUB_WORKSPACE/Exported/Android/launcher/src/main/res launcher/src/main/res | |
cp -f $GITHUB_WORKSPACE/Exported/Android/unityLibrary/src/main/AndroidManifest.xml unityLibrary/src/main/AndroidManifest.xml | |
cp -f $GITHUB_WORKSPACE/Exported/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: QuestCraftPlusPlus/Wrapper-IL2CPP | |
github_token: ${{ secrets.GITHUB_TOKEN }} |