-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(build): Different folder for storing prepared distributions
- Loading branch information
1 parent
e2275a9
commit cb80fcc
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|