File tree Expand file tree Collapse file tree 6 files changed +17
-7
lines changed
components/console_simple_init
examples/console_basic/main Expand file tree Collapse file tree 6 files changed +17
-7
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}
78
78
fi
79
79
done;
80
80
# Deploy docs with version path
81
- if [[ "${{ env.BUMP_VERSION }}" != "" ]] && [[ -d $GITHUB_WORKSPACE/docs/${comp } ]]; then
82
- echo "Deploying specific version of ${comp } (${{ env.BUMP_VERSION }})"
81
+ if [[ "${{ env.BUMP_VERSION }}" != "" ]] && [[ -d $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT } } ]]; then
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 @@ -33,3 +33,7 @@ Please refer to instructions in [ESP-IDF](https://github.com/espressif/esp-idf)
33
33
34
34
* Brief introduction [ README] ( components/esp_mqtt_cxx/README.md )
35
35
* Full html [ documentation] ( https://docs.espressif.com/projects/esp-protocols/esp_mqtt_cxx/docs/latest/index.html )
36
+
37
+ ### console_simple_init
38
+
39
+ * Brief introduction [ README] ( components/console_simple_init/README.md )
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 10
10
11
11
int do_user_cmd (int argc , char * * argv )
12
12
{
13
- printf ("Hello from user command\n" );
13
+ printf ("Hello from user command. \n" );
14
14
return 0 ;
15
15
}
16
16
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