-
Notifications
You must be signed in to change notification settings - Fork 2
170 lines (138 loc) · 5.48 KB
/
publish.yml
File metadata and controls
170 lines (138 loc) · 5.48 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
name: publish
on:
workflow_dispatch:
inputs:
version:
description: 'Mod version (without character v)'
required: true
type: string
release_type:
description: 'alpha, beta or release'
required: true
type: string
debug:
description: 'show details for debug'
required: true
default: true
type: boolean
jobs:
build:
uses: ./.github/workflows/build.yml
publish:
needs:
- build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: checkout repository
uses: actions/checkout@v3.5.3
- name: download build artifacts
uses: actions/download-artifact@v4
with:
name: artifacts
path: artifacts
- name: sort artifacts by game version
run: |
bash ./.github/scripts/sort_artifacts.sh
- name: show details for debug
if: ${{ inputs.debug == true }}
run: |
apt install tree -y
echo @@@@@###########################################@@@@@
echo @@@@@###########################################@@@@@
echo #### Mod version: ${{ inputs.version }}
echo #### Release type: ${{ inputs.release_type }}
echo #### Modrinth project id: SB7oe4aB
echo #### Curseforge project id: 891699
echo #### Downloaded artifacts:
ls artifacts
echo #### Processed artifacts:
tree processed_artifacts
echo @@@@@###########################################@@@@@
echo @@@@@###########################################@@@@@
continue-on-error: true
- name: Publish Minecraft Mods 1.17
uses: Kir-Antipov/mc-publish@v3.3
with:
modrinth-id: SB7oe4aB
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
curseforge-id: 891699
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
files: processed_artifacts/1.17.1/*.jar
name: v${{ inputs.version }} For Minecraft 1.17
version: v${{ inputs.version }}
version-type: ${{ inputs.release_type }}
loaders: fabric
game-versions: '1.17.1'
game-version-filter: any
dependencies: |-
carpet(required)
fabric-api(required)
modrinth-changelog: 'Got full change logs in [GitHub](https://github.com/OptiJava/OptCarpetAddition/releases).'
curseforge-changelog: 'Got full change logs in [GitHub](https://github.com/OptiJava/OptCarpetAddition/releases).'
retry-attempts: 3
retry-delay: 10000
- name: Publish Minecraft Mods 1.20.4
uses: Kir-Antipov/mc-publish@v3.3
with:
modrinth-id: SB7oe4aB
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
curseforge-id: 891699
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
files: processed_artifacts/1.20.4/*.jar
name: v${{ inputs.version }} For Minecraft 1.20.4
version: v${{ inputs.version }}
version-type: ${{ inputs.release_type }}
loaders: fabric
game-versions: '1.20.4'
game-version-filter: any
dependencies: |-
carpet(required)
fabric-api(required)
modrinth-changelog: 'Got full change logs in [GitHub](https://github.com/OptiJava/OptCarpetAddition/releases).'
curseforge-changelog: 'Got full change logs in [GitHub](https://github.com/OptiJava/OptCarpetAddition/releases).'
retry-attempts: 3
retry-delay: 10000
- name: Publish Minecraft Mods 1.21
uses: Kir-Antipov/mc-publish@v3.3
with:
modrinth-id: SB7oe4aB
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
curseforge-id: 891699
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
files: processed_artifacts/1.21/*.jar
name: v${{ inputs.version }} For Minecraft 1.21
version: v${{ inputs.version }}
version-type: ${{ inputs.release_type }}
loaders: fabric
game-versions: '1.21'
game-version-filter: any
dependencies: |-
carpet(required)
fabric-api(required)
modrinth-changelog: 'Got full change logs in [GitHub](https://github.com/OptiJava/OptCarpetAddition/releases).'
curseforge-changelog: 'Got full change logs in [GitHub](https://github.com/OptiJava/OptCarpetAddition/releases).'
retry-attempts: 3
retry-delay: 10000
- name: Publish Minecraft Mods 1.21.5
uses: Kir-Antipov/mc-publish@v3.3
with:
modrinth-id: SB7oe4aB
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
curseforge-id: 891699
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
files: processed_artifacts/1.21.5/*.jar
name: v${{ inputs.version }} For Minecraft 1.21.5
version: v${{ inputs.version }}
version-type: ${{ inputs.release_type }}
loaders: fabric
game-versions: '1.21.5'
game-version-filter: any
dependencies: |-
carpet(required)
fabric-api(required)
modrinth-changelog: 'Got full change logs in [GitHub](https://github.com/OptiJava/OptCarpetAddition/releases).'
curseforge-changelog: 'Got full change logs in [GitHub](https://github.com/OptiJava/OptCarpetAddition/releases).'
retry-attempts: 3
retry-delay: 10000