File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed
components/console_simple_init Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 50
50
sudo apt-get -y install doxygen clang python3-pip
51
51
python -m pip install breathe recommonmark esp-docs==1.4.1
52
52
for comp in `ls components`; do
53
- if [ -d $GITHUB_WORKSPACE/docs/${comp} ]; then
53
+ if [[ -d $GITHUB_WORKSPACE/docs/${comp} ] ]; then
54
54
cd $GITHUB_WORKSPACE/docs/${comp}
55
55
if [[ "${{ env.BUMP_COMPONENT }}" == "${comp}" ]]; then
56
56
echo "Building specific version of ${comp} (${{ env.BUMP_VERSION }})"
69
69
export GIT_VER=$(git describe --always)
70
70
export GITHUB_REF_NAME=latest
71
71
for comp in `ls components`; do
72
- if [ -d $GITHUB_WORKSPACE/docs/${comp} ]; then
72
+ if [[ -d $GITHUB_WORKSPACE/docs/${comp} ] ]; then
73
73
echo "Deploying latest of ${comp}"
74
74
export DOCS_BUILD_DIR=$GITHUB_WORKSPACE/docs/${comp}
75
75
export DOCS_DEPLOY_PATH=$DOCS_DEPLOY_PATH_ORIG/${comp}
79
79
done;
80
80
# Deploy docs with version path
81
81
if [[ "${{ env.BUMP_VERSION }}" != "" ]] && [[ -d $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }} ]]; then
82
- echo "Deploying specific version of $GITHUB_WORKSPACE/docs/$ {{ env.BUMP_COMPONENT }} (${{ env.BUMP_VERSION }})"
82
+ echo "Deploying specific version of ${{ env.BUMP_COMPONENT }} (${{ env.BUMP_VERSION }})"
83
83
cd $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }}
84
84
export GITHUB_REF_NAME=${{ env.BUMP_VERSION }}
85
85
deploy-docs
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ commitizen:
3
3
bump_message : ' bump(console): $current_version -> $new_version'
4
4
pre_bump_hooks : python ../../ci/changelog.py console_simple_init
5
5
tag_format : console_simple_init-v$version
6
- version : 1.0.1
6
+ version : 1.0.2
7
7
version_files :
8
8
- idf_component.yml
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 1.0.2] ( https://github.com/espressif/esp-protocols/commits/console_simple_init-v1.0.2 )
4
+
5
+ ### Bug Fixes
6
+
7
+ - Fixed bump version check in publish-docs yml ([ e834d47] ( https://github.com/espressif/esp-protocols/commit/e834d47 ) )
8
+
3
9
## [ 1.0.1] ( https://github.com/espressif/esp-protocols/commits/console_simple_init-v1.0.1 )
4
10
5
11
### Bug Fixes
Original file line number Diff line number Diff line change 1
- version : 1.0.1
1
+ version : 1.0.2
2
2
description : The component provides helper functions for easy initialization and start of esp console.
3
3
url : https://github.com/espressif/esp-protocols/tree/master/components/console_simple_init
4
4
dependencies :
You can’t perform that action at this time.
0 commit comments