-
-
Notifications
You must be signed in to change notification settings - Fork 28
59 lines (56 loc) · 1.77 KB
/
publish.yaml
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
name: Publish action
on:
create:
tag:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v2
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: setup jdk 21
uses: actions/setup-java@v1
with:
java-version: "21"
- name: make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
- name: build
run: ./gradlew build
- name: Publish Minecraft Mods Fabric
uses: Kir-Antipov/[email protected]
with:
curseforge-id: 284324
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
modrinth-id: 72GXx2MO
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
files: |
Fabric/build/libs/!(*-@(javadoc|sources)).jar
Fabric/build/libs/*-@(javadoc|sources).jar
version-type: beta
loaders: |
fabric
quilt
game-versions: 1.21
java: 21
name: ""
changelog: "https://github.com/InnovativeOnlineIndustries/Emojiful/commits/1.21"
- name: Publish Minecraft Mods NeoForge
uses: Kir-Antipov/[email protected]
with:
curseforge-id: 284324
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
modrinth-id: 72GXx2MO
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
files: |
NeoForge/build/libs/*-all.jar
NeoForge/build/libs/!(*-@(all)).jar
version-type: beta
loaders: neoforge
game-versions: 1.21
java: 21
name: ""
changelog: "https://github.com/InnovativeOnlineIndustries/Emojiful/commits/1.21"