Add a build workflow

This commit is contained in:
Vankka 2023-05-19 20:18:47 +03:00
parent e5783e7b05
commit 6053802ee2
No known key found for this signature in database
GPG Key ID: 6E50CB7A29B96AD0

26
.github/workflows/build.yaml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
cache: 'gradle'
- name: Build with Gradle
run: ./gradlew build --no-daemon
- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: "jars/*.jar"