chore(project): automatically update website with every release

This commit is contained in:
Nico Rehwaldt 2020-01-22 15:41:31 +01:00
parent df4ece2978
commit 4bafbe5d8b
2 changed files with 38 additions and 0 deletions

View File

@ -17,6 +17,8 @@ jobs:
script: './tasks/stages/update-examples'
- stage: update demo
script: './tasks/stages/update-demo'
- stage: update website
script: './tasks/stages/update-website'
stages:
- test
@ -25,4 +27,6 @@ stages:
- name: update examples
if: tag =~ ^v\d
- name: update demo
if: tag =~ ^v\d
- name: update website
if: tag =~ ^v\d

34
tasks/stages/update-website Executable file
View File

@ -0,0 +1,34 @@
#! /bin/bash
# update bpmn-js version in the <bpmn.io> project
PWD="$(pwd)"
WORKDIR="$(pwd)/tmp"
CLONE_DIR="$WORKDIR/bpmn.io"
# create work dir
mkdir -p "$WORKDIR"
git clone --depth=1 https://github.com/bpmn-io/bpmn.io.git "$CLONE_DIR"
cd "$CLONE_DIR"
echo "Updating toolkit version to $TRAVIS_TAG on bpmn.io"
cat src/data/site.yml | tr "\r?\n" "\r" | sed -e "s#bpmnjs:\r version: [^\r]*\r#bpmnjs:\r version: $TRAVIS_TAG\r#" | tr "\r" "\n" > src/data/site.yml
if [[ "x$SKIP_COMMIT" = "x" ]]; then
git config user.email "$BPMN_IO_EMAIL"
git config user.name "$BPMN_IO_USERNAME"
git config push.default simple
# add all resources
git add -A
git commit -m "chore(project): bump bpmn-js to $TRAVIS_TAG"
git push -q "https://$GITHUB_AUTH@github.com/bpmn-io/bpmn.io.git" &2>/dev/null
else
echo "Skipping commit (SKIP_COMMIT=$SKIP_COMMIT)"
fi
cd "$PWD"