update gradle #154
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
name: build | |
on: [ workflow_dispatch, push, pull_request ] | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, '[skip]')" | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: setup java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: 17 | |
- name: setup gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: false | |
- name: do the build | |
run: ./gradlew assemble squishJar | |
continue-on-error: true | |
- name: upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unlimited-artifacts-v${{ github.run_number }} | |
path: | | |
build/libs/merged/*.jar | |
*/build/libs/*.jar |