-
-
Notifications
You must be signed in to change notification settings - Fork 28
53 lines (50 loc) · 1.63 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
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 17
uses: actions/setup-java@v1
with:
java-version: "17"
- 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 }}
files-primary: Fabric/build/libs/!(*-@(javadoc|sources)).jar
files-secondary: Fabric/build/libs/*-@(javadoc|sources).jar
version-type: release
loaders: |
fabric
quilt
game-versions: 1.20.1
java: 17
name: ""
changelog: "https://github.com/InnovativeOnlineIndustries/Emojiful/commits/1.20"
- name: Publish Minecraft Mods Forge
uses: Kir-Antipov/[email protected]
with:
curseforge-id: 284324
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
files-primary: Forge/build/libs/!(*-@(javadoc|sources)).jar
files-secondary: Forge/build/libs/*-@(javadoc|sources).jar
version-type: release
loaders: forge
game-versions: 1.20.1
java: 17
name: ""
changelog: "https://github.com/InnovativeOnlineIndustries/Emojiful/commits/1.20"