Merge branch 'master' into develop

This commit is contained in:
Nico Rehwaldt 2020-02-04 09:34:25 +01:00
commit 422746f54c
4 changed files with 11 additions and 11 deletions

View File

@ -9,7 +9,7 @@ CLONE_DIR="$WORKDIR/bpmn-io-demo"
# create work dir
mkdir -p "$WORKDIR"
git clone --depth=1 https://github.com/$BPMN_IO_DEMO_ENDPOINT.git "$CLONE_DIR"
git clone --depth=1 "https://$GITHUB_AUTH@github.com/$BPMN_IO_DEMO_ENDPOINT.git" "$CLONE_DIR"
cd "$CLONE_DIR"
@ -22,7 +22,7 @@ git config push.default simple
git add -A
git commit -m "chore(project): bump bpmn-js to $TRAVIS_TAG"
git tag "bpmn-js-$TRAVIS_TAG"
git push -q "https://$GITHUB_AUTH@github.com/$BPMN_IO_DEMO_ENDPOINT.git" &2>/dev/null
git push --tags -q "https://$GITHUB_AUTH@github.com/$BPMN_IO_DEMO_ENDPOINT.git" &2>/dev/null
git push -q &2>/dev/null
git push --tags -q &2>/dev/null
cd "$PWD"

View File

@ -9,7 +9,7 @@ EXAMPLES_DIR="$WORKDIR/bpmn-js-examples"
# create work dir
mkdir -p "$WORKDIR"
git clone --depth=1 https://github.com/bpmn-io/bpmn-js-examples.git "$EXAMPLES_DIR"
git clone --depth=1 "https://$GITHUB_AUTH@github.com/bpmn-io/bpmn-js-examples.git" "$EXAMPLES_DIR"
cd "$EXAMPLES_DIR"
@ -29,8 +29,8 @@ if [[ "x$SKIP_COMMIT" = "x" ]]; then
git add -A
git commit -m "chore(project): bump examples to $TRAVIS_TAG"
git tag "$TRAVIS_TAG"
git push -q "https://$GITHUB_AUTH@github.com/bpmn-io/bpmn-js-examples.git" &2>/dev/null
git push --tags -q "https://$GITHUB_AUTH@github.com/bpmn-io/bpmn-js-examples.git" &2>/dev/null
git push -q &2>/dev/null
git push --tags -q &2>/dev/null
else
echo "Skipping commit (SKIP_COMMIT=$SKIP_COMMIT)"
fi

View File

@ -9,7 +9,7 @@ IT_DIR="$WORKDIR/bpmn-js-integration"
# create work dir
mkdir -p "$WORKDIR"
git clone --depth=1 https://github.com/bpmn-io/bpmn-js-integration.git "$IT_DIR"
git clone --depth=1 "https://$GITHUB_AUTH@github.com/bpmn-io/bpmn-js-integration.git" "$IT_DIR"
cd "$IT_DIR"
@ -22,7 +22,7 @@ git config push.default simple
git add -A
git commit -m "chore(project): bump bpmn-js to $TRAVIS_TAG"
git tag "$TRAVIS_TAG"
git push -q "https://$GITHUB_AUTH@github.com/bpmn-io/bpmn-js-integration.git" &2>/dev/null
git push --tags -q "https://$GITHUB_AUTH@github.com/bpmn-io/bpmn-js-integration.git" &2>/dev/null
git push -q &2>/dev/null
git push --tags -q &2>/dev/null
cd "$PWD"

View File

@ -9,7 +9,7 @@ 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"
git clone --depth=1 "https://$GITHUB_AUTH@github.com/bpmn-io/bpmn.io.git" "$CLONE_DIR"
cd "$CLONE_DIR"
@ -26,7 +26,7 @@ if [[ "x$SKIP_COMMIT" = "x" ]]; then
# 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
git push -q &2>/dev/null
else
echo "Skipping commit (SKIP_COMMIT=$SKIP_COMMIT)"
fi