forked from lineupjs/lineup_app
-
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 branch 'develop' into taggle_user_study
# Conflicts: # src/style.scss
- Loading branch information
Showing
26 changed files
with
9,146 additions
and
18,170 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 |
---|---|---|
|
@@ -23,15 +23,19 @@ jobs: | |
- run: #update build doc and readme | ||
name: update api | ||
command: | | ||
if [ "${CIRCLE_BRANCH}" == "master" ] ; then | ||
if [ "${CIRCLE_BRANCH}" == "master" ] || [ "${CIRCLE_BRANCH}" == "develop" ] ; then | ||
git clone [email protected]:datavisyn/lineup.js.org.git | ||
cd lineup.js.org | ||
rm -rf "app/" | ||
mv ../build "app" | ||
appdir=app | ||
if [ "${CIRCLE_BRANCH}" == "develop" ] ; then | ||
appdir=app_develop | ||
fi | ||
rm -rf "${appdir}/" | ||
mv ../build "${appdir}" | ||
git config user.email "[email protected]" | ||
git config user.name "Samuel Gratzl" | ||
git add -A | ||
git commit -m "auto updating app" -m "trigger: ${CIRCLE_BUILD_URL}" | ||
git commit -m "auto updating ${appdir}" -m "trigger: ${CIRCLE_BUILD_URL}" | ||
git push origin master | ||
fi | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.