From 85b2b4bdab91735ee12744e3c8bd113ad8ae7188 Mon Sep 17 00:00:00 2001 From: Sho Sakuma Date: Tue, 7 Apr 2026 19:03:39 +0900 Subject: fix(ci): add download path for release artifact download-artifact without path extracts the JAR to the repo root, but gh release create expects it under platform-*/build/libs/. Co-Authored-By: Claude --- .github/workflows/release-paper.yaml | 1 + .github/workflows/release-velocity.yaml | 1 + 2 files changed, 2 insertions(+) (limited to '.github') diff --git a/.github/workflows/release-paper.yaml b/.github/workflows/release-paper.yaml index 49c9af8..6c8f9f7 100644 --- a/.github/workflows/release-paper.yaml +++ b/.github/workflows/release-paper.yaml @@ -84,6 +84,7 @@ jobs: uses: actions/download-artifact@v8 with: name: LunaticChat-paper-v${{ needs.validate.outputs.version }} + path: platform-paper/build/libs - name: Create GitHub Release env: diff --git a/.github/workflows/release-velocity.yaml b/.github/workflows/release-velocity.yaml index 6a78ea5..151c82b 100644 --- a/.github/workflows/release-velocity.yaml +++ b/.github/workflows/release-velocity.yaml @@ -85,6 +85,7 @@ jobs: uses: actions/download-artifact@v8 with: name: LunaticChat-velocity-v${{ needs.validate.outputs.version }} + path: platform-velocity/build/libs - name: Create GitHub Release env: -- cgit v1.2.1