-
Notifications
You must be signed in to change notification settings - Fork 3
49 lines (41 loc) · 1.05 KB
/
publish-modrinth.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
name: publish-modrinth
on:
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Change wrapper permissions
run: chmod +x ./gradlew
- name: Build artifacts
run: ./gradlew build
- name: publish artifacts
uses: Kir-Antipov/[email protected]
with:
modrinth-id: CEvDfomf
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
files: |
build/libs/!(*-@(dev|sources|javadoc)).jar
build/libs/*-@(dev|sources|javadoc).jar
version-type: beta
loaders: |
fabric
quilt
game-version-filter: releases
dependencies: |
fabric-api
cloth-config
trinkets
java: |
17
retry-attempts: 2
retry-delay: 10000
fail-mode: fail