-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (61 loc) · 1.84 KB
/
gradle.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
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.commits[0].message, '#build-skip')"
steps:
- uses: actions/[email protected]
- uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 8
uses: actions/[email protected]
with:
distribution: temurin
java-version: 8
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew test
- name: Build with Gradle
run: ./gradlew build
- name: Upload artifacts
uses: "actions/[email protected]"
with:
name: "dragonCancelLite"
path: "build/libs/dragonCancelLite-*.jar"
release:
needs: build
if:
contains(github.event.commits[0].message, 'release')
&& github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: thecodemonkey/action-get-gradle-version@master
id: version
with:
file: "build.gradle.kts"
- uses: actions/[email protected]
with:
name: "dragonCancelLite"
path: "./"
- name: Create Release
uses: Kir-Antipov/[email protected]
with:
file: "dragonCancelLite-*.jar"
modrinth-id: 4U7mK5Ez
dependencies:
[email protected](embedded)
loaders: |
spigot
paper
purpur
game-versions: |
>=1.17
1.8.9
modrinth-token: ${{ secrets.MODRINTH_PAT }}
github-generate-changelog: true
github-token: ${{ secrets.GITHUB_TOKEN }}