Skip to content

Commit

Permalink
FIX github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rafi0101 committed Aug 15, 2023
1 parent 2b577c6 commit fb18da2
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,21 @@ on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: set up JDK 1.17
uses: actions/setup-java@v1
with:
java-version: 1.17
- name: set up JDK 1.17
uses: actions/setup-java@v1
with:
java-version: 1.17

- name: Cache Gradle packages
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Cache Gradle packages
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle

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

0 comments on commit fb18da2

Please sign in to comment.