From e828dbb1a56618c3ad473f8e80ee4d87b03d8d0d Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Sat, 6 Feb 2021 16:50:31 +0300 Subject: [PATCH] More grouping. --- .github/actions/build-docs/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/build-docs/action.yml b/.github/actions/build-docs/action.yml index 1d24020..f0c65dc 100644 --- a/.github/actions/build-docs/action.yml +++ b/.github/actions/build-docs/action.yml @@ -27,13 +27,17 @@ runs: id: build-docs shell: bash run: | + echo ::group::Build Docs OUTPUT_DIR=$(build-docs ${{ inputs.asdf-system }}) echo "::set-output name=build-dir::${OUTPUT_DIR}" + echo ::endgroup:: - name: Upload Docs shell: bash run: | + echo ::group::Upload Docs BUILD_DIR=${{ steps.build-docs.outputs.build-dir }} ${{ github.action_path }}/upload.ros "${BUILD_DIR}" + echo ::endgroup::