-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (41 loc) · 1.05 KB
/
build.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Build
on:
push:
branches:
- '*'
paths-ignore:
- '**.md'
- '.github/**'
workflow_dispatch:
jobs:
build:
name: Build Pipeline
runs-on: ubuntu-latest
steps:
- name: Setup timezone
run: |
sudo timedatectl set-timezone Europe/Zurich
timedatectl
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up Java JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '19'
java-package: jdk
architecture: x64
cache: 'gradle'
check-latest: false
- name: Change wrapper permissions
run: chmod +x ./gradlew
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v4
- name: Build with Gradle
run: ./gradlew build --warn --full-stacktrace
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: build-libs
path: build/libs
retention-days: 3