forked from BeneHenke/CreateTrainWebAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (26 loc) · 695 Bytes
/
Copy pathbuild.yml
File metadata and controls
31 lines (26 loc) · 695 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
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Setup JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build with Gradle
run: ./gradlew build
- name: Upload a Build Artifact
uses: actions/upload-artifact@v7.0.0
with:
name: CreateTrainWebAPI
path: build/libs/*.jar
retention-days: 90