forked from ccxt/ccxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ccxt#17870 from olegtaranenko/travis-git-missed-de…
…leted-added-files New and deleted generated files do not committing to ccxt git repository [ci skip]
- Loading branch information
Showing
1 changed file
with
6 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 |
---|---|---|
|
@@ -39,11 +39,12 @@ echo "Pushing generated files back to GitHub..." | |
LAST_COMMIT_MESSAGE="$(git log --no-merges -1 --pretty=%B)" | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Travis CI" | ||
git add CHANGELOG.md dist/cjs/**/* dist/ccxt.bundle.cjs dist/ccxt.browser.js dist/ccxt.browser.min.js ts/ccxt.ts ts/src/abstract/*.ts js/**/** php/*.php php/abstract/*.php php/async/*.php php/async/abstract/*.php php/pro/*.php python/ccxt/async_support/*.py python/ccxt/*.py python/ccxt/abstract/*.py python/ccxt/pro/*.py wiki/* examples/py examples/php examples/js | ||
git add php/test/ php/pro/test/ | ||
git add python/ccxt/test/ python/ccxt/pro/test/ | ||
git add -f python/LICENSE.txt python/package.json python/README.md | ||
git commit -a -m "${COMMIT_MESSAGE}" -m '[ci skip]' || exit 0 | ||
# git add CHANGELOG.md dist/cjs/**/* dist/ccxt.bundle.cjs dist/ccxt.browser.js dist/ccxt.browser.min.js ts/ccxt.ts ts/src/abstract/*.ts js/**/** php/*.php php/abstract/*.php php/async/*.php php/async/abstract/*.php php/pro/*.php python/ccxt/async_support/*.py python/ccxt/*.py python/ccxt/abstract/*.py python/ccxt/pro/*.py wiki/* examples/py examples/php examples/js | ||
# git add php/test/ php/pro/test/ | ||
# git add python/ccxt/test/ python/ccxt/pro/test/ | ||
# git add -f python/LICENSE.txt python/package.json python/README.md | ||
git add . -A | ||
git commit -m "${COMMIT_MESSAGE}" -m '[ci skip]' || exit 0 | ||
if [ "$SHOULD_TAG" = "true" ]; then | ||
git tag -a "${COMMIT_MESSAGE}" -m "${LAST_COMMIT_MESSAGE}" -m "" -m "[ci skip]"; | ||
fi | ||
|