summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorSho Sakuma <me@m1sk9.dev>2026-02-07 19:15:37 +0900
committerGitHub <noreply@github.com>2026-02-07 19:15:37 +0900
commitfea90277ca6fc1313a7e11a92108c041e713ef1b (patch)
tree4ff24a9e63d384d53136777f7c0210063e87ae83 /.github/workflows
parent1f931900ba81c9648b5e43f1fd9cd7fd80eaa5a8 (diff)
parent8ffe59a0e5d8f4a66f579a22f1b0db04ec9959ab (diff)
downloadLunaticChat-fea90277ca6fc1313a7e11a92108c041e713ef1b.tar.gz
LunaticChat-fea90277ca6fc1313a7e11a92108c041e713ef1b.tar.bz2
LunaticChat-fea90277ca6fc1313a7e11a92108c041e713ef1b.zip
Merge pull request #92 from m1sk9/fix-release-ci
ci: Fix release-ci
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/release.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 88aa28e..9738849 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -103,8 +103,8 @@ jobs:
VELOCITY_JAR_NAME=${{ needs.validate.outputs.velocity_jar_name }}
gh release create "$TAG_NAME" \
- "$PAPER_JAR_NAME" \
- "$VELOCITY_JAR_NAME" \
+ "platform-paper/build/libs/$PAPER_JAR_NAME" \
+ "platform-velocity/build/libs/$VELOCITY_JAR_NAME" \
--title "$TAG_NAME" \
--draft \
--notes ""
@@ -124,6 +124,6 @@ jobs:
velocity
game-versions: "1.21.x"
files: |
- ${{ needs.validate.outputs.paper_jar_name }}
- ${{ needs.validate.outputs.velocity_jar_name }}
+ platform-paper/build/libs/${{ needs.validate.outputs.paper_jar_name }}
+ platform-velocity/build/libs/${{ needs.validate.outputs.velocity_jar_name }}