Skip to content

ci: change JDK ver

ci: change JDK ver #71

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- .github/workflows/*.yml
- "!.github/workflows/ci.yml"
- LICENSE
- README.md
- renovate.json
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Java & Gradle
uses: ./.github/actions/setup
- name: Build
uses: gradle/gradle-build-action@v2
with:
arguments: jar
- name: Upload jar
uses: actions/upload-artifact@v3
with:
name: jar
path: ./build/libs/*.jar