forked from Electroid/SportPaper
-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (62 loc) · 1.47 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
name: CI
on:
push:
paths:
- patches/**.patch
- pom.xml
- settings.xml
pull_request:
paths:
- patches/**.patch
workflow_dispatch:
jobs:
build:
permissions:
contents: read
strategy:
matrix:
java:
- "8"
runs-on: ubuntu-latest
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v3
- id: setup-java
name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: maven
- id: setup-git
name: Setup Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub CI"
- id: build
name: Build SportPaper
run: bash sportpaper build
- id: upload
name: Upload SportPaper
uses: actions/upload-artifact@v3
with:
name: SportPaper.jar
path: SportPaper-Server/target/sportpaper-*.jar
if-no-files-found: error
deploy:
permissions:
contents: read
packages: write
need: build
if: |
github.repository_owner == 'Electroid' &&
github.event_name == 'push' &&
github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- id: deploy
name: Deploy SportPaper
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}