Skip to content

Commit

Permalink
meta: Fix modrinth publishing (#1147)
Browse files Browse the repository at this point in the history
  • Loading branch information
nea89o authored May 3, 2024
1 parent 897c06d commit ec21a71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push-to-modrinth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ jobs:
steps:
- uses: dsaltares/fetch-gh-release-asset@master
with:
version: ${{ release.id }}
version: ${{ github.event.release.id }}
regex: true
file: "*.jar"
token: ${{ secrets.GITHUB_TOKEN }}
- run: |
printf %s "$CHANGELOG" > CHANGELOG.md
env:
CHANGELOG: ${{ release.body }}
CHANGELOG: ${{ github.event.release.body }}
- uses: Kir-Antipov/[email protected]
with:
modrinth-id: GGamhqbw
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
files: "*.jar"
loaders: forge
game-versions: 1.8.9
version: ${{ release.tag_name }}
version: ${{ github.event.release.tag_name }}
# TODO: version-type: release

0 comments on commit ec21a71

Please sign in to comment.