-
-
Notifications
You must be signed in to change notification settings - Fork 15
41 lines (33 loc) · 994 Bytes
/
Copy pathpr_master.yaml
File metadata and controls
41 lines (33 loc) · 994 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
39
40
41
name: Java CI
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: "17"
distribution: "temurin"
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Build with Gradle
uses: gradle/gradle-build-action@v3
with:
arguments: fatJar
- name: Retrieve Version
id: yamp_version
run: |
VERSION_NAME=$(./gradlew -q printVersionName)
echo "VERSION_NAME=$VERSION_NAME" >> $GITHUB_OUTPUT
- name: Get version
run: |
echo "version_name=${{ steps.yamp_version.outputs.VERSION_NAME }}" >> $GITHUB_ENV
- run: echo ${{ env.version_name }}
- uses: actions/upload-artifact@v4
with:
name: yamp-${{ env.version_name }}
path: app/build/libs