Skip to content

Commit

Permalink
chore(build): Different folder for storing prepared distributions
Browse files Browse the repository at this point in the history
  • Loading branch information
mthmulders committed Dec 27, 2023
1 parent e2275a9 commit cb80fcc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/early-access.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ jobs:
run: |
targets=("ubuntu-latest" "macOS-latest" "macOS-arm64-latest" "windows-latest")
mkdir -p target/distributions
mkdir -p artifacts
find /tmp/artifacts/ -name "mcs*" -exec mv -v {} target/distributions/ \;
find /tmp/artifacts/ -name "mcs*" -exec mv -v {} artifacts/ \;
- name: Cache Maven packages
uses: actions/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ jobs:
run: |
targets=("ubuntu-latest" "macOS-latest" "macOS-arm64-latest" "windows-latest")
mkdir -p target/distributions
mkdir -p artifacts
find /tmp/artifacts/ -name "mcs*" -exec mv -v {} target/distributions/ \;
find /tmp/artifacts/ -name "mcs*" -exec mv -v {} artifacts/ \;
- name: Set up Java
uses: actions/[email protected]
Expand Down

0 comments on commit cb80fcc

Please sign in to comment.