-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (33 loc) · 818 Bytes
/
build.yml
File metadata and controls
40 lines (33 loc) · 818 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
name: Build & Release
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
release:
types: [ published ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn package -q
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: SeedShield
path: target/SeedShield-*.jar
- name: Upload JAR to Release
if: github.event_name == 'release'
uses: softprops/action-gh-release@v2
with:
files: target/SeedShield-*.jar