-
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (26 loc) · 621 Bytes
/
push.yml
File metadata and controls
30 lines (26 loc) · 621 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gradle/actions/wrapper-validation@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: 'gradle'
- name: Build with Gradle
run: ./gradlew shadowJar --stacktrace --no-daemon
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: geyserdebuginfo-artifacts
path: build/libs/*.jar