diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-04-07 19:03:39 +0900 |
|---|---|---|
| committer | Sho Sakuma <me@m1sk9.dev> | 2026-04-07 19:03:39 +0900 |
| commit | 85b2b4bdab91735ee12744e3c8bd113ad8ae7188 (patch) | |
| tree | 20aeb151b454f2dc00d252f1b0293d1316e608c5 /.github | |
| parent | 920ec8c6b5718774017c5c8382dd3e1f2fcfd2c4 (diff) | |
| download | LunaticChat-85b2b4bdab91735ee12744e3c8bd113ad8ae7188.tar.gz LunaticChat-85b2b4bdab91735ee12744e3c8bd113ad8ae7188.tar.bz2 LunaticChat-85b2b4bdab91735ee12744e3c8bd113ad8ae7188.zip | |
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 <noreply@anthropic.com>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release-paper.yaml | 1 | ||||
| -rw-r--r-- | .github/workflows/release-velocity.yaml | 1 |
2 files changed, 2 insertions, 0 deletions
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: |
