From a8370684a13f23168136b847212f22b626ce5fa6 Mon Sep 17 00:00:00 2001 From: SSimco <37044560+SSimco@users.noreply.github.com> Date: Wed, 30 Oct 2024 14:16:13 +0200 Subject: [PATCH] Update build.yml --- .github/workflows/android_build.yml | 3 ++- .github/workflows/deploy_release_android.yml | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/android_build.yml b/.github/workflows/android_build.yml index 18854bc9..7eef1639 100644 --- a/.github/workflows/android_build.yml +++ b/.github/workflows/android_build.yml @@ -10,12 +10,13 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: self-hosted steps: - name: Checkout repo uses: actions/checkout@v3 with: + token: ${{ secrets.GH_PAT }} submodules: "recursive" fetch-depth: 0 diff --git a/.github/workflows/deploy_release_android.yml b/.github/workflows/deploy_release_android.yml index 2e63da56..dc01c476 100644 --- a/.github/workflows/deploy_release_android.yml +++ b/.github/workflows/deploy_release_android.yml @@ -9,7 +9,7 @@ jobs: secrets: inherit deploy: name: Deploy experimental release - runs-on: ubuntu-22.04 + runs-on: self-hosted needs: [call-release-build] steps: - uses: actions/checkout@v4 @@ -35,7 +35,7 @@ jobs: VERSION=${{ env.CEMU_VERSION }} echo "Cemu Version is $VERSION" ls cemu-android - mv cemu-android/*.apk upload/Cemu-$VERSION.apk + mv cemu-android/**/*.apk upload/Cemu-$VERSION.apk - name: Create release run: |