Files
freeCodeCamp/trigger-build.sh
Stuart Taylor 66f88f2082 feat: Have travis bump submodule commits in docker build repository (#35216)
- [x] I have read [freeCodeCamp's contribution guidelines](https://github.com/freeCodeCamp/freeCodeCamp/blob/master/CONTRIBUTING.md).
- [x] My pull request has a descriptive title (not a vague title like `Update index.md`)
- [x] My pull request targets the `master` branch of freeCodeCamp.

Co-authored-by: mrugesh mohapatra <1884376+raisedadead@users.noreply.github.com>
2019-02-15 13:14:00 +05:30

17 lines
493 B
Bash

#!/usr/bin/env bash
pushd "$TRAVIS_BUILD_DIR"
if [ -n "$DOCKER_PUSH_API_TOKEN" ]
then
git clone https://github.com/"$DOCKER_PUSH_REPO".git docker-push-repo
cd docker-push-repo/freecodecamp
git pull --rebase origin master
cd ../
git add freecodecamp
git -c user.name="$DOCKER_PUSH_USER" -c user.email='travis' \
commit -m 'chore(ci): Travis CI - bump submodule'
git push https://"$DOCKER_PUSH_USER":"$DOCKER_PUSH_API_TOKEN"@github.com/"$DOCKER_PUSH_REPO".git master
fi
popd