-
Notifications
You must be signed in to change notification settings - Fork 15
76 lines (64 loc) · 2.08 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
name: publish
on:
release:
types:
- published
jobs:
build:
strategy:
matrix:
java: [ 21 ]
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Validate gradle wrapper
uses: gradle/wrapper-validation-action@v2
- name: Setup JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'microsoft'
- name: Make gradle wrapper executable
run: chmod +x ./gradlew
- name: Build
run: ./gradlew build
- uses: BrycensRanch/read-properties-action@v1
id: props
with:
file: gradle.properties
all: true
- name: Publish
uses: Kir-Antipov/[email protected]
with:
modrinth-id: ${{ steps.props.outputs.modrinth_id }}
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
curseforge-id: ${{ steps.props.outputs.curseforge_id }}
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}
files: |
build/libs/${{ steps.props.outputs.archives_base_name }}-${{ github.event.release.tag_name }}.jar
build/libs/${{ steps.props.outputs.archives_base_name }}-${{ github.event.release.tag_name }}-sources.jar
version: ${{ github.event.release.tag_name }}
version-type: beta
loaders: |
fabric
game-versions: ${{ steps.props.outputs.minecraft_version_range }}
game-version-filter: releases
dependencies: |
fabric-api
cloth-config
java: |
21
retry-attempts: 0
fail-mode: skip
- name: Upload assets to GitHub
uses: AButler/[email protected]
with:
files: "build/libs/*"
repo-token: ${{ secrets.GH_TOKEN }}
- name: Hit mod update webhook
uses: fjogeleit/http-request-action@v1
with:
url: ${{ secrets.MOD_UPDATE_WEBHOOK }}
method: 'GET'
preventFailureOnNoResponse: 'true'