diff options
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e2414018..3756e754 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,22 +11,21 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set-up JDK 11 - uses: actions/setup-java@v2 + uses: actions/setup-java@v3 with: java-version: '11' distribution: 'temurin' - - name: Grant Execute Permission for gradlew - run: chmod +x gradlew - - - name: Build with Gradle - run: ./gradlew build -x lint + - name: Setup and build with Gradle + uses: gradle/gradle-build-action@v2 + with: + arguments: build -x lint - name: Upload apk - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Infinity-${{github.sha}} path: app/build/outputs/apk/ |