Merge branch 'master' into develop
This commit is contained in:
commit
422746f54c
|
@ -9,7 +9,7 @@ CLONE_DIR="$WORKDIR/bpmn-io-demo"
|
||||||
# create work dir
|
# create work dir
|
||||||
mkdir -p "$WORKDIR"
|
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"
|
cd "$CLONE_DIR"
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ git config push.default simple
|
||||||
git add -A
|
git add -A
|
||||||
git commit -m "chore(project): bump bpmn-js to $TRAVIS_TAG"
|
git commit -m "chore(project): bump bpmn-js to $TRAVIS_TAG"
|
||||||
git tag "bpmn-js-$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 -q &2>/dev/null
|
||||||
git push --tags -q "https://$GITHUB_AUTH@github.com/$BPMN_IO_DEMO_ENDPOINT.git" &2>/dev/null
|
git push --tags -q &2>/dev/null
|
||||||
|
|
||||||
cd "$PWD"
|
cd "$PWD"
|
|
@ -9,7 +9,7 @@ EXAMPLES_DIR="$WORKDIR/bpmn-js-examples"
|
||||||
# create work dir
|
# create work dir
|
||||||
mkdir -p "$WORKDIR"
|
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"
|
cd "$EXAMPLES_DIR"
|
||||||
|
|
||||||
|
@ -29,8 +29,8 @@ if [[ "x$SKIP_COMMIT" = "x" ]]; then
|
||||||
git add -A
|
git add -A
|
||||||
git commit -m "chore(project): bump examples to $TRAVIS_TAG"
|
git commit -m "chore(project): bump examples to $TRAVIS_TAG"
|
||||||
git tag "$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 -q &2>/dev/null
|
||||||
git push --tags -q "https://$GITHUB_AUTH@github.com/bpmn-io/bpmn-js-examples.git" &2>/dev/null
|
git push --tags -q &2>/dev/null
|
||||||
else
|
else
|
||||||
echo "Skipping commit (SKIP_COMMIT=$SKIP_COMMIT)"
|
echo "Skipping commit (SKIP_COMMIT=$SKIP_COMMIT)"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -9,7 +9,7 @@ IT_DIR="$WORKDIR/bpmn-js-integration"
|
||||||
# create work dir
|
# create work dir
|
||||||
mkdir -p "$WORKDIR"
|
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"
|
cd "$IT_DIR"
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ git config push.default simple
|
||||||
git add -A
|
git add -A
|
||||||
git commit -m "chore(project): bump bpmn-js to $TRAVIS_TAG"
|
git commit -m "chore(project): bump bpmn-js to $TRAVIS_TAG"
|
||||||
git tag "$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 -q &2>/dev/null
|
||||||
git push --tags -q "https://$GITHUB_AUTH@github.com/bpmn-io/bpmn-js-integration.git" &2>/dev/null
|
git push --tags -q &2>/dev/null
|
||||||
|
|
||||||
cd "$PWD"
|
cd "$PWD"
|
|
@ -9,7 +9,7 @@ CLONE_DIR="$WORKDIR/bpmn.io"
|
||||||
# create work dir
|
# create work dir
|
||||||
mkdir -p "$WORKDIR"
|
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"
|
cd "$CLONE_DIR"
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ if [[ "x$SKIP_COMMIT" = "x" ]]; then
|
||||||
# add all resources
|
# add all resources
|
||||||
git add -A
|
git add -A
|
||||||
git commit -m "chore(project): bump bpmn-js to $TRAVIS_TAG"
|
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
|
else
|
||||||
echo "Skipping commit (SKIP_COMMIT=$SKIP_COMMIT)"
|
echo "Skipping commit (SKIP_COMMIT=$SKIP_COMMIT)"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue