Skip to content

Commit

Permalink
Fix paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Jan 2, 2025
1 parent 84d8c71 commit 42b2ed4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ jobs:
./${{ fromJSON(inputs.arch)[1] }}
- name: Run script
run: |
UNIVERSAL_JDK=./${{ inputs.release }}-universal
ARM64_JDK=./${{ fromJSON(inputs.arch)[0] }}/${{ inputs.release }}
X86_64_JDK=./${{ fromJSON(inputs.arch)[1] }}/${{ inputs.release }}
UNIVERSAL_JDK=$(pwd)/${{ inputs.release }}-universal
ARM64_JDK=$(pwd)/${{ fromJSON(inputs.arch)[0] }}/${{ inputs.release }}
X86_64_JDK=$(pwd)/${{ fromJSON(inputs.arch)[1] }}/${{ inputs.release }}
${ARM64_JDK}/Contents/Home/bin/jlink --add-modules ALL-MODULE-PATH --strip-debug --no-man-pages --no-header-files --compress=2 --output ${ARM64_JDK}/Contents/jre
rm -rf ${ARM64_JDK}/Contents/Home
Expand Down

0 comments on commit 42b2ed4

Please sign in to comment.