diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-04-04 16:42:17 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-04 16:42:17 +0900 |
| commit | f51337e809cb6946b17258c85ba969f3e54a3461 (patch) | |
| tree | 0d86d3d27b21b04f24eedfb72b0cf3c86c76ad03 /.github | |
| parent | 6947ee9d2d7e0b4a87a405f2eb13f2dce29f150b (diff) | |
| parent | bd1e8d0fc74f1595a39cec2d6e705db2ace9809f (diff) | |
| download | LunaticChat-f51337e809cb6946b17258c85ba969f3e54a3461.tar.gz LunaticChat-f51337e809cb6946b17258c85ba969f3e54a3461.tar.bz2 LunaticChat-f51337e809cb6946b17258c85ba969f3e54a3461.zip | |
Merge pull request #163 from m1sk9/support-jdk25_and_26.1
feat: Support Minecraft 26.1.1 and JDK 25
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release.yaml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f0da20c..68b9c48 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -82,8 +82,11 @@ jobs: contents: write env: MODRINTH_CHANNEL: release - MODRINTH_GAME_VERSIONS: "1.21.x" - MODRINTH_MC_VERSION: "1.21.11" + MODRINTH_PAPER_GAME_VERSIONS: "26.1.x" + MODRINTH_VELOCITY_GAME_VERSIONS: |- + 1.21.x + 26.1.x + MODRINTH_MC_VERSION: "26.1" steps: - name: Checkout repository uses: actions/checkout@v6 @@ -150,7 +153,7 @@ jobs: loaders: |- paper folia - game-versions: ${{ env.MODRINTH_GAME_VERSIONS }} + game-versions: ${{ env.MODRINTH_PAPER_GAME_VERSIONS }} files: platform-paper/build/libs/${{ needs.validate.outputs.paper_jar_name }} - name: Publish to Modrinth (Velocity) @@ -164,6 +167,6 @@ jobs: changelog: |- Please refer to the [GitHub release](https://github.com/m1sk9/LunaticChat/releases/tag/v${{ needs.validate.outputs.version }}) for update details. loaders: velocity - game-versions: ${{ env.MODRINTH_GAME_VERSIONS }} + game-versions: ${{ env.MODRINTH_VELOCITY_GAME_VERSIONS }} files: platform-velocity/build/libs/${{ needs.validate.outputs.velocity_jar_name }} |
