Skip to content

Commit

Permalink
Merge branch 'develop' into taggle_user_study
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/style.scss
  • Loading branch information
Holger Stitz committed Sep 10, 2018
2 parents 237c7c3 + 293c1bc commit 8fb3c96
Show file tree
Hide file tree
Showing 26 changed files with 9,146 additions and 18,170 deletions.
12 changes: 8 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 git@github.com: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 "samuel_gratzl@gmx.at"
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
Expand Down
46 changes: 0 additions & 46 deletions karma.conf.js

This file was deleted.

Loading

0 comments on commit 8fb3c96

Please sign in to comment.