Skip to content

Commit

Permalink
Previous change to only update on difference causes errors :(
Browse files Browse the repository at this point in the history
  • Loading branch information
ralight committed Aug 6, 2020
1 parent a38cb3b commit 5f565fe
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/covsync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,7 @@ jobs:
with:
fetch-depth: 0
- run: |
git diff --exit-code -s origin/coverity-fixes origin/fixes
if [ "$?" = "1" ]; then
git checkout -b coverity-fixes origin/fixes
git push origin coverity-fixes
fi
git diff --exit-code -s origin/coverity-develop origin/develop
if [ "$?" = "1" ]; then
git checkout -b coverity-develop origin/develop
git push origin coverity-develop
fi
git checkout -b coverity-fixes origin/fixes
git push origin coverity-fixes
git checkout -b coverity-develop origin/develop
git push origin coverity-develop

0 comments on commit 5f565fe

Please sign in to comment.