Skip to content

Commit 5cc346c

Browse files
committed
hotfix: fix uber-jar publishing
1 parent 1b474ab commit 5cc346c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,20 @@ jobs:
5858
- name: Upload assembly
5959
uses: actions/upload-artifact@v4
6060
with:
61-
name: jelly-cli.jar
61+
name: jelly-cli-assembly
6262
path: jelly-cli.jar
6363

6464
publish:
6565
runs-on: ubuntu-latest
66-
needs: aot-compile
66+
needs:
67+
- aot-compile
68+
- jit-compile
6769
steps:
6870
- uses: actions/download-artifact@v4
6971

7072
- name: Rename binaries
7173
run: |
74+
mv jelly-cli-assembly/jelly-cli.jar jelly-cli.jar
7275
mv jelly-cli-macos-14/jelly-cli jelly-cli-mac-arm64
7376
mv jelly-cli-ubuntu-22.04/jelly-cli jelly-cli-linux-x86_64
7477
mv jelly-cli-ubuntu-22.04-arm/jelly-cli jelly-cli-linux-arm64

0 commit comments

Comments
 (0)