-
Notifications
You must be signed in to change notification settings - Fork 2
92 lines (68 loc) · 2.22 KB
/
mod_publis.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: Fabric and NeoForge Publish
on:
workflow_dispatch:
workflow_call:
env:
JAVA_VERSION: 21
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
MODRINTH_ID: DfZhZ0LX
CURSEFORGE_ID: 651887
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check Environment Variables
run: env
- name: Checkout Repository
uses: actions/checkout@v3
with:
submodules: true
- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '21'
- name: Make Gradle Wrapper Executable
run: chmod +x gradlew
- name: Set Environment Variables from Gradle
run: ./gradlew printEnv
- name: Build
run: ./gradlew build
- name: Fabric Publish (Modrinth & CurseForge)
uses: Kir-Antipov/[email protected]
with:
modrinth-id: ${{ env.MODRINTH_ID }}
modrinth-token: ${{ env.MODRINTH_TOKEN }}
curseforge-id: ${{ env.CURSEFORGE_ID }}
curseforge-token: ${{ env.CURSEFORGE_TOKEN }}
files: |
fabric/build/libs/!(*-@(dev|sources|javadoc)).jar
name: ${{ env.RELEASE_NAME }}
version: ${{ env.MOD_VERSION }}
version-type: 'release'
changelog-file: CHANGELOG.md
game-versions: ${{ env.GAME_VERSIONS }}
loaders: |
fabric
quilt
dependencies: |
fabric-api
java: ${{ env.JAVA_VERSION }}
- name: NeoForge Publish (Modrinth & CurseForge)
uses: Kir-Antipov/[email protected]
with:
modrinth-id: ${{ env.MODRINTH_ID }}
modrinth-token: ${{ env.MODRINTH_TOKEN }}
curseforge-id: ${{ env.CURSEFORGE_ID }}
curseforge-token: ${{ env.CURSEFORGE_TOKEN }}
files: |
neoforge/build/libs/!(*-@(dev|sources|javadoc)).jar
name: ${{ env.RELEASE_NAME }}
version: ${{ env.MOD_VERSION }}
version-type: 'release'
changelog-file: CHANGELOG.md
game-versions: ${{ env.GAME_VERSIONS }}
loaders: |
neoforge
java: ${{ env.JAVA_VERSION }}