-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (30 loc) · 854 Bytes
/
AutoBuild.yml
File metadata and controls
38 lines (30 loc) · 854 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
31
32
33
34
35
36
37
38
name: AutoBuild
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4.2.2
- name: Set up JDK 21
uses: actions/setup-java@v4.7.1
with:
java-version: '21'
distribution: 'temurin'
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4.4.0
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build
run: ./gradlew build
- name: Upload Files
uses: actions/upload-artifact@v4.6.2
with:
name: SoftWare
path: build/libs/*.jar