Skip to content

Commit

Permalink
Update deploy android debug workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorKabata committed Jan 15, 2024
1 parent 507c2aa commit 1119e94
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/deployAndroidDebug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand All @@ -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

Expand Down

0 comments on commit 1119e94

Please sign in to comment.