-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Clone whole history when pushing PHP and Java clients
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -182,7 +182,7 @@ jobs: | |
run: | | ||
npm install | ||
npm run generate.java | ||
git clone --depth 1 https://[email protected]/phrase/phrase-java.git clones/java &> /dev/null | ||
git clone https://[email protected]/phrase/phrase-java.git clones/java &> /dev/null | ||
rsync -avI --delete --exclude='.git/' clients/java/ clones/java | ||
cd clones/java | ||
git status --verbose | ||
|
@@ -213,7 +213,7 @@ jobs: | |
run: | | ||
npm install | ||
npm run generate.php | ||
git clone --depth 1 https://[email protected]/phrase/phrase-php.git clones/php &> /dev/null | ||
git clone https://[email protected]/phrase/phrase-php.git clones/php &> /dev/null | ||
rsync -avI --delete --exclude='.git/' clients/php/ clones/php | ||
cd clones/php | ||
git status --verbose | ||
|