Skip to content

Commit

Permalink
macos_aarch64: try to fix upload action
Browse files Browse the repository at this point in the history
  • Loading branch information
ahadas committed Mar 31, 2024
1 parent dee2d7e commit c0038d6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/macos_aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,12 @@ jobs:
rm -rf ./out/macOS/aarch64/bin
- name: Compress JRE
run: zip jdk_macos_aarch64.zip ./out/*
run: |
mkdir /tmp/artifacts
zip /tmp/artifacts/jdk_macos_aarch64.zip ./out/*
- name: Upload artifact
uses: actions/upload-artifact@master
with:
name: jdk_macos_aarch64.zip
path: .
path: /tmp/artifacts

0 comments on commit c0038d6

Please sign in to comment.