We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8764108 + 3ad2322 commit 26e5878Copy full SHA for 26e5878
.github/workflows/promote_release.yml
@@ -88,3 +88,21 @@ jobs:
88
file: build/libs/multiverse-core-${{ env.VERSION }}.jar
89
asset_name: multiverse-core-${{ steps.release.outputs.tag_name }}.jar
90
tag: ${{ steps.release.outputs.tag_name }}
91
+
92
+ - name: Get Changelog
93
+ id: changelog
94
+ uses: cardinalby/[email protected]
95
+ env:
96
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
97
+ with:
98
+ tag: ${{ steps.release.outputs.tag_name }}
99
100
+ - name: Modrinth Upload
101
+ uses: gradle/gradle-build-action@v2
102
103
+ arguments: build modrinth
104
105
+ GITHUB_VERSION: ${{ env.VERSION }}
106
+ MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
107
+ CHANGELOG: ${{ steps.changelog.outputs.body }}
108
+ PRERELEASE: ${{ steps.changelog.outputs.prerelease }}
0 commit comments