Skip to content

Fix: update to upload-artifact v4 #3

Fix: update to upload-artifact v4

Fix: update to upload-artifact v4 #3

Workflow file for this run

name: Java CI with Gradle
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '21'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: build/libs/*.jar
retention-days: 90