changed docs deployment to trigger on every push to master/develop (#2962)
* changed docs deployment to trigger on every push to master/develop * updated PENDING.md
This commit is contained in:
parent
b5ccbc9f07
commit
a55f4490f9
|
@ -269,19 +269,18 @@ jobs:
|
||||||
- run:
|
- run:
|
||||||
name: Trigger website build
|
name: Trigger website build
|
||||||
command: |
|
command: |
|
||||||
export LAST_COMMIT=`git rev-parse HEAD`
|
|
||||||
export DOCS_COMMIT=`git log -1 --format=format:%H --full-diff docs`
|
|
||||||
if [[ $DOCS_COMMIT == $LAST_COMMIT ]]; then
|
|
||||||
chamber exec cosmos-sdk -- start_website_build
|
chamber exec cosmos-sdk -- start_website_build
|
||||||
else
|
|
||||||
echo "No changes to docs detected"
|
|
||||||
fi
|
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
test-suite:
|
test-suite:
|
||||||
jobs:
|
jobs:
|
||||||
- deploy_docs
|
- deploy_docs:
|
||||||
|
filters:
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
- develop
|
||||||
- setup_dependencies
|
- setup_dependencies
|
||||||
- lint:
|
- lint:
|
||||||
requires:
|
requires:
|
||||||
|
|
|
@ -8,7 +8,7 @@ BREAKING CHANGES
|
||||||
* [cli] [\#2595](https://github.com/cosmos/cosmos-sdk/issues/2595) Remove `keys new` in favor of `keys add` incorporating existing functionality with addition of key recovery functionality.
|
* [cli] [\#2595](https://github.com/cosmos/cosmos-sdk/issues/2595) Remove `keys new` in favor of `keys add` incorporating existing functionality with addition of key recovery functionality.
|
||||||
|
|
||||||
* Gaia
|
* Gaia
|
||||||
|
- [#128](https://github.com/tendermint/devops/issues/128) Updated CircleCI job to trigger website build on every push to master/develop.
|
||||||
* SDK
|
* SDK
|
||||||
|
|
||||||
* Tendermint
|
* Tendermint
|
||||||
|
|
Loading…
Reference in New Issue