jar squishing, part 8 #18
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
name: pull_request | |
on: [ pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Packages | |
run: sudo apt-get install -y advancecomp | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY_PR }} | |
cache-read-only: true | |
- name: :build | |
run: ./gradlew build | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: zume | |
path: "**/zume-*.jar" |