-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (51 loc) · 1.62 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 GitHub, CurseForge & Modrinth
on: [ workflow_dispatch ]
env:
MINECRAFT_VERSION: 1.21.1
JAVA_VERSION: 21
VERSION: 1.1.2+1.21.1
RELEASE_NAME: Solstice 1.1.2 for Minecraft 1.21.1
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
permissions:
contents: write
jobs:
build:
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
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
- name: Build
run: ./gradlew clean build
- name: Publish to Maven
run: ./gradlew publish
- name: Publish
uses: Kir-Antipov/[email protected]
with:
curseforge-id: 1149875
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
modrinth-id: uIvrDZas
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
github-tag: "v${{env.VERSION}}"
github-token: ${{ secrets.GITHUB_TOKEN }}
name: "${{env.RELEASE_NAME}}"
version: "${{env.VERSION}}"
version-type: release
changelog-file: CHANGELOG.md
loaders: fabric
game-versions: "${{env.MINECRAFT_VERSION}}"
java: "${{env.JAVA_VERSION}}"