blob: dfb6438acec640f753235eda43cf06cbb4ef3c9a (
plain)
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
|
on:
release:
types:
- published
jobs:
upload-to-modrinth:
runs-on: ubuntu-latest
steps:
- name: Download release file
gh release download "$TAG" -p '*.jar' --repo "$REPO"
env:
TAG: ${{ github.event.release.tag_name }}
REPO: ${{ github.repository }}
GH_TOKEN: ${{ github.token }}
- run: |
printf %s "$CHANGELOG" > CHANGELOG.md
name: Set changelog
env:
CHANGELOG: ${{ github.event.release.body }}
- name: Display file tree
run: |
ls -Rla .
echo ::group::Changelog
cat CHANGELOG.md
echo ::endgroup::
- uses: Kir-Antipov/mc-publish@v3.3
with:
modrinth-id: GGamhqbw
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
files: "*.jar"
loaders: forge
game-versions: 1.8.9
version: ${{ github.event.release.tag_name }}
# TODO: version-type: release
|