Skip to content

Commit

Permalink
build: Clone whole history when pushing PHP and Java clients
Browse files Browse the repository at this point in the history
  • Loading branch information
jablan committed Dec 20, 2023
1 parent 7c04f1e commit 11f19dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 11f19dd

Please sign in to comment.