diff options
author | Linnea Gräf <nea@nea.moe> | 2024-05-03 17:25:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-03 17:25:50 +0200 |
commit | ec21a7199e8d615c312035c067ace5ee0b1ac8d6 (patch) | |
tree | d930291194adf904a1d196ea707003615f9d9a3c | |
parent | 897c06d368471e2d3de88bcc95a427579c3e7150 (diff) | |
download | NotEnoughUpdates-ec21a7199e8d615c312035c067ace5ee0b1ac8d6.tar.gz NotEnoughUpdates-ec21a7199e8d615c312035c067ace5ee0b1ac8d6.tar.bz2 NotEnoughUpdates-ec21a7199e8d615c312035c067ace5ee0b1ac8d6.zip |
meta: Fix modrinth publishing (#1147)
-rw-r--r-- | .github/workflows/push-to-modrinth.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/push-to-modrinth.yaml b/.github/workflows/push-to-modrinth.yaml index 930ca13c..d33e2090 100644 --- a/.github/workflows/push-to-modrinth.yaml +++ b/.github/workflows/push-to-modrinth.yaml @@ -9,14 +9,14 @@ 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/mc-publish@v3.3 with: modrinth-id: GGamhqbw @@ -24,5 +24,5 @@ jobs: files: "*.jar" loaders: forge game-versions: 1.8.9 - version: ${{ release.tag_name }} + version: ${{ github.event.release.tag_name }} # TODO: version-type: release |