MAKE dex2jar GREAT AGAIN! #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Java CI with Gradle | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Generate dependency graphs | |
uses: gradle/actions/dependency-submission@v3 | |
with: | |
dependency-graph: generate | |
- name: Build dex-tools with Gradle | |
run: ./gradlew check distZip | |
- name: Archive dex tools | |
uses: actions/upload-artifact@v4 | |
if: success() | |
with: | |
name: dex-tools | |
path: dex-tools/build/distributions/dex-tools-*.zip |