This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
Bump actions/upload-artifact from 4.3.5 to 4.3.6 #580
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: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
with: | |
submodules: recursive | |
- name: Setup Java | |
uses: actions/[email protected] | |
with: | |
java-version: 8 | |
distribution: "adopt" | |
cache: "gradle" | |
# - name: Setup Gradle | |
# uses: gradle/actions/[email protected] | |
# with: | |
# gradle-version: 6.9.4 | |
# add-job-summary: never | |
- name: Build with Gradle | |
run: chmod +x ./gradlew && ./gradlew build | |
- name: Upload build artifacts | |
uses: actions/[email protected] | |
with: | |
name: skidbounce | |
path: build/libs/skidbounce-v?.?.?.jar | |
if-no-files-found: error |