We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b474ab commit 5cc346cCopy full SHA for 5cc346c
.github/workflows/publish.yml
@@ -58,17 +58,20 @@ jobs:
58
- name: Upload assembly
59
uses: actions/upload-artifact@v4
60
with:
61
- name: jelly-cli.jar
+ name: jelly-cli-assembly
62
path: jelly-cli.jar
63
64
publish:
65
runs-on: ubuntu-latest
66
- needs: aot-compile
+ needs:
67
+ - aot-compile
68
+ - jit-compile
69
steps:
70
- uses: actions/download-artifact@v4
71
72
- name: Rename binaries
73
run: |
74
+ mv jelly-cli-assembly/jelly-cli.jar jelly-cli.jar
75
mv jelly-cli-macos-14/jelly-cli jelly-cli-mac-arm64
76
mv jelly-cli-ubuntu-22.04/jelly-cli jelly-cli-linux-x86_64
77
mv jelly-cli-ubuntu-22.04-arm/jelly-cli jelly-cli-linux-arm64
0 commit comments