Skip to content

Commit

Permalink
Move build artifacts to correct folder
Browse files Browse the repository at this point in the history
  • Loading branch information
mthmulders committed Dec 27, 2023
1 parent 0a2087d commit 6f1ef64
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/early-access.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,16 @@ jobs:

- name: Download all build artifacts
uses: actions/[email protected]
with:
path: /tmp/artifacts

- name: Move build artifacts to correct folder
run: |
targets=("ubuntu-latest" "macOS-latest" "macOS-arm64-latest" "windows-latest")
mkdir target/distributions
find /tmp/artifacts/ -name "mcs*" -exec mv -v {} target/distributions/ \;
- name: Cache Maven packages
uses: actions/[email protected]
Expand Down

0 comments on commit 6f1ef64

Please sign in to comment.