-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
5 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 |
---|---|---|
|
@@ -26,11 +26,13 @@ jobs: | |
path: temp_native | ||
|
||
- run: | | ||
find org.alloytools.pardinus.native/native/ -type f -exec git hash-object -w {} \; -print | ||
ls -Rl temp_native | ||
cp -rf temp_native/*/* org.alloytools.pardinus.native/native/ | ||
ls -Rl org.alloytools.pardinus.native/native/ | ||
find org.alloytools.pardinus.native/native/ -type f -exec git hash-object -w {} \; -print | ||
echo "Show what is downloaded" | ||
find temp_native -type f -name "electrod*" -exec git hash-object -w {} \; -print | ||
echo "Copy downloaded to native" | ||
cp -rfv temp_native/*/* org.alloytools.pardinus.native/native/ | ||
echo "Show new native" | ||
find org.alloytools.pardinus.native/native/ -type f -name "electrod*" -exec git hash-object -w {} \; -print | ||
echo "Remove temp" | ||
rm -rf temp_native | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
|