-
-
Notifications
You must be signed in to change notification settings - Fork 0
92 lines (72 loc) · 2.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: Publish on GitHub, Modrinth, CurseForge
on: [ workflow_dispatch ]
env:
MINECRAFT_VERSION: 1.21
JAVA_VERSION: 21
VERSION: 0.1.1
VERSION_TYPE: release
PUBLISH_GITHUB_TOKEN: ${{ secrets.PUBLISH_GITHUB_TOKEN }}
PUBLISH_MODRINTH_TOKEN: ${{ secrets.PUBLISH_MODRINTH_TOKEN }}
PUBLISH_CURSEFORGE_TOKEN: ${{ secrets.PUBLISH_CURSEFORGE_TOKEN }}
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: "${{env.JAVA_VERSION}}"
- name: Make Gradle Wrapper Executable
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
- name: Build
run: ./gradlew clean build
- name: Publish (Fabric)
uses: Kir-Antipov/[email protected]
with:
github-tag: "v${{env.VERSION}}"
github-generate-changelog: false
github-draft: false
github-prerelease: false
github-token: "${{env.PUBLISH_GITHUB_TOKEN}}"
modrinth-id: g8vH5XKK
modrinth-featured: false
modrinth-token: "${{env.PUBLISH_MODRINTH_TOKEN}}"
curseforge-id: 1093054
curseforge-token: "${{env.PUBLISH_CURSEFORGE_TOKEN}}"
name: "Automated Workstations - v${{env.VERSION}} - Fabric - ${{env.MINECRAFT_VERSION}}"
version: "${{env.VERSION}}"
version-type: "${{env.VERSION_TYPE}}"
changelog-file: CHANGELOG.md
game-version-filter: releases
loaders: fabric
files: "fabric/build/libs/automatedworkstations-fabric-${{env.MINECRAFT_VERSION}}-${{env.VERSION}}.jar"
- name: Publish (Neoforge)
uses: Kir-Antipov/[email protected]
with:
github-tag: "v${{env.VERSION}}"
github-generate-changelog: false
github-draft: false
github-prerelease: false
github-token: "${{env.PUBLISH_GITHUB_TOKEN}}"
modrinth-id: g8vH5XKK
modrinth-featured: false
modrinth-token: "${{env.PUBLISH_MODRINTH_TOKEN}}"
curseforge-id: 1093054
curseforge-token: "${{env.PUBLISH_CURSEFORGE_TOKEN}}"
name: "Automated Workstations - v${{env.VERSION}} - Neoforge - ${{env.MINECRAFT_VERSION}}"
version: "${{env.VERSION}}"
version-type: "${{env.VERSION_TYPE}}"
changelog-file: CHANGELOG.md
game-version-filter: releases
loaders: neoforge
files: "neoforge/build/libs/automatedworkstations-neoforge-${{env.MINECRAFT_VERSION}}-${{env.VERSION}}.jar"