-
-
Notifications
You must be signed in to change notification settings - Fork 10
70 lines (55 loc) · 2.1 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
66
67
68
69
70
name: Java CD
on:
workflow_dispatch:
jobs:
build_and_publish:
name: Build and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get mod version from Gradle
uses: madhead/read-java-properties@latest
id: mod_version
with:
file: gradle.properties
property: mod_version
default: 0.0.1
- name: Get supported Minecraft version from Gradle
uses: madhead/read-java-properties@latest
id: supported_minecraft_version
with:
file: gradle.properties
property: supported_minecraft_version_name
default: 0.0.1
- run: echo version string ${{ steps.mod_version.outputs.value }}+mc${{ steps.supported_minecraft_version.outputs.value }}
- name: Setup JDK (Temurin 17)
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Change Gradle wrapper permissions
run: chmod +x ./gradlew
- name: Execute Gradle build
run: ./gradlew build
# https://github.com/marketplace/actions/publish-minecraft-mods
- name: Publish mod
uses: Kir-Antipov/[email protected]
with:
# GitHub releases
github-token: ${{ secrets.GITHUB_TOKEN }}
# Modrinth
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
# CurseForge
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
name: ${{ steps.mod_version.outputs.value }} (${{ steps.supported_minecraft_version.outputs.value }})
github-tag: v${{ steps.mod_version.outputs.value }}+mc${{ steps.supported_minecraft_version.outputs.value }}
files-primary: build/libs/!(*-@(dev|sources|javadoc)).jar
files-secondary: build/libs/*-@(dev|sources|javadoc).jar
version-type: release
modrinth-featured: false
changelog-file: CHANGELOG_LATEST.md