diff --git a/.github/workflows/publish-docs-component.yml b/.github/workflows/publish-docs-component.yml index 18fb7b1b7..401cd0cfb 100644 --- a/.github/workflows/publish-docs-component.yml +++ b/.github/workflows/publish-docs-component.yml @@ -78,8 +78,8 @@ jobs: fi done; # Deploy docs with version path - if [[ "${{ env.BUMP_VERSION }}" != "" ]] && [[ -d $GITHUB_WORKSPACE/docs/${comp} ]]; then - echo "Deploying specific version of ${comp} (${{ env.BUMP_VERSION }})" + if [[ "${{ env.BUMP_VERSION }}" != "" ]] && [[ -d $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }} ]]; then + echo "Deploying specific version of $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }} (${{ env.BUMP_VERSION }})" cd $GITHUB_WORKSPACE/docs/${{ env.BUMP_COMPONENT }} export GITHUB_REF_NAME=${{ env.BUMP_VERSION }} deploy-docs diff --git a/README.md b/README.md index 06ffba689..6aff976eb 100644 --- a/README.md +++ b/README.md @@ -33,3 +33,7 @@ Please refer to instructions in [ESP-IDF](https://github.com/espressif/esp-idf) * Brief introduction [README](components/esp_mqtt_cxx/README.md) * Full html [documentation](https://docs.espressif.com/projects/esp-protocols/esp_mqtt_cxx/docs/latest/index.html) + +### console_simple_init + +* Brief introduction [README](components/console_simple_init/README.md) diff --git a/components/console_simple_init/examples/console_basic/main/console_basic.c b/components/console_simple_init/examples/console_basic/main/console_basic.c index 4dbc97b61..ffe962dab 100644 --- a/components/console_simple_init/examples/console_basic/main/console_basic.c +++ b/components/console_simple_init/examples/console_basic/main/console_basic.c @@ -10,7 +10,7 @@ int do_user_cmd(int argc, char **argv) { - printf("Hello from user command\n"); + printf("Hello from user command.\n"); return 0; }