From 1119e94a1960a284f360ab5a5cd51c2bfb924cc3 Mon Sep 17 00:00:00 2001 From: Victor Kabata Date: Mon, 15 Jan 2024 21:42:56 +0300 Subject: [PATCH] Update deploy android debug workflow --- .github/workflows/deployAndroidDebug.yml | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deployAndroidDebug.yml b/.github/workflows/deployAndroidDebug.yml index a85f5f51..4e1d24f0 100644 --- a/.github/workflows/deployAndroidDebug.yml +++ b/.github/workflows/deployAndroidDebug.yml @@ -14,8 +14,9 @@ env: VERSION_NAME: ${{ github.event.inputs.versionName }} jobs: - setup: - name: ⚙️Setup Environment + + build: + name: 🔨 Build runs-on: ubuntu-latest steps: - name: Checkout Code @@ -27,14 +28,9 @@ jobs: distribution: adopt java-version: "17" - build: - name: 🔨 Build - needs: - - setup - runs-on: ubuntu-latest - steps: - name: Make gradle executable run: chmod +x ./gradlew + - name: Build with Gradle run: ./gradlew build --stacktrace @@ -44,6 +40,16 @@ jobs: - build runs-on: ubuntu-latest steps: + + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Set up JDK + uses: actions/setup-java@v3 + with: + distribution: adopt + java-version: "17" + - name: Make gradle executable run: chmod +x ./gradlew