forked from kyrptonaught/Glass-Doors
-
Notifications
You must be signed in to change notification settings - Fork 3
71 lines (51 loc) · 1.68 KB
/
release.yaml
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
name: Release
on:
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: "17"
distribution: "temurin"
cache: gradle
- name: Make Gradle wrapper executable
run: chmod +x ./gradlew
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Ensure no old datagenned files are present
run: test ! -d ./src/main/resources_generated
- name: Run Datagen
run: ./gradlew runDatagen --stacktrace
- name: Validate Datagen results
run: test -d ./src/main/resources_generated/.cache
- name: Build mod
run: ./gradlew build --stacktrace -x runDatagen
- name: Publish mod
uses: Kir-Antipov/mc-publish@v3.3
with:
modrinth-id: zGSQY8dZ
modrinth-featured: true
modrinth-unfeature-mode: intersection
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
curseforge-id: 326641
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
files: build/libs/!(*-@(dev|sources)).jar
name: Release 5.1.2 for Minecraft 1.20 and later
version: 5.1.2+1.20-and-later
version-type: release
loaders: |
fabric
dependencies: |
fabric-api@*(required){modrinth:P7dR8mSH}{curseforge:306612}#(ignore:github)
game-versions: |
[1.20-rc1,1.20.1]
game-version-filter: none
java: |
17