-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (36 loc) · 902 Bytes
/
Copy pathci.yml
File metadata and controls
44 lines (36 loc) · 902 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
42
43
44
name: CI
on:
push:
branches: [main]
tags: ['v*']
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: maven
- run: mvn verify --batch-mode --no-transfer-progress
- run: mvn package --batch-mode --no-transfer-progress -DskipTests
- uses: actions/upload-artifact@v4
with:
name: javasnake
path: target/javasnake-*.jar
release:
needs: build
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
with:
name: javasnake
- uses: softprops/action-gh-release@v2
with:
files: javasnake-*.jar