-
Notifications
You must be signed in to change notification settings - Fork 55
65 lines (56 loc) · 1.59 KB
/
publish.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
name: Publish
on:
push:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 13
cache: gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Build and Publish
run: ./gradlew build publish --no-daemon -PMAVEN_USERNAME=$MAVEN_USERNAME -PMAVEN_PASSWORD=$MAVEN_PASSWORD
- name: Upload main Artifact
uses: actions/upload-artifact@v3
with:
name: LavaSrc.jar
path: main/build/libs/lavasrc-*.jar
- name: Upload plugin Artifact
uses: actions/upload-artifact@v3
with:
name: LavaSrc-Plugin.jar
path: plugin/build/libs/lavasrc-plugin-*.jar
release:
needs: build
runs-on: ubuntu-latest
if: github.event_name == 'release'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download main Artifact
uses: actions/download-artifact@v3
with:
name: LavaSrc.jar
- name: Download plugin Artifact
uses: actions/download-artifact@v3
with:
name: LavaSrc-Plugin.jar
- name: Upload Artifacts to GitHub Release
uses: ncipollo/release-action@v1
with:
artifacts: lavasrc-*.jar
allowUpdates: true