Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
forrestguice authored Nov 23, 2024
1 parent 7daef6e commit 7975f98
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,27 @@ on:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: set up JDK 1.8
uses: actions/setup-java@v1
- uses: actions/checkout@v4
with:
submodules: recursive

- name: set up JDK 8.0.422+5
uses: actions/setup-java@v4
with:
java-version: 1.8
distribution: 'temurin'
java-version: '8.0.422+5'

- name: Make gradlew executable
run: chmod +x ./gradlew

- name: Build with Gradle
run: ./gradlew build

- name: Upload artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: app
path: app/build/outputs/apk/debug/app-debug.apk

0 comments on commit 7975f98

Please sign in to comment.