-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (66 loc) · 1.84 KB
/
ci.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
name: Base CI
on: [push, pull_request, workflow_dispatch]
jobs:
build:
name: Just Build
runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# os:
# - ubuntu-latest
# - windows-latest
# - ubuntu-20.04
# jdk:
# - '11'
# - '17'
#
# jdk-distribution:
# - 'adopt'
# - 'temurin'
steps:
- uses: actions/checkout@v4
# - name: Set up JDK ${{ matrix.jdk }}
# uses: actions/setup-java@v4
# with:
# java-version: ${{ matrix.jdk }}
# distribution: ${{ matrix.jdk-distribution }}
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'adopt'
- name: Just verify
run: mvn -B clean verify
- name: Package with Maven
run: mvn -B clean package -DskipTests
- name: View tree
run: |
ls ./target -a
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: ubuntu-latest
path: ./target
release:
name: release
if: startsWith(github.ref, 'refs/tags/')
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
- name: Release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: 'ubuntu-latest/*.jar'
tag: ${{ github.ref }}
file_glob: true
# deploy:
# name: deploy
# if: startsWith(github.ref, 'refs/tags/')
# needs: release
# runs-on: ubuntu-latest