More grouping.

This commit is contained in:
Alexander Artemenko 2021-02-06 16:50:31 +03:00
parent 5d2a6db1c2
commit e828dbb1a5

View file

@ -27,13 +27,17 @@ runs:
id: build-docs id: build-docs
shell: bash shell: bash
run: | run: |
echo ::group::Build Docs
OUTPUT_DIR=$(build-docs ${{ inputs.asdf-system }}) OUTPUT_DIR=$(build-docs ${{ inputs.asdf-system }})
echo "::set-output name=build-dir::${OUTPUT_DIR}" echo "::set-output name=build-dir::${OUTPUT_DIR}"
echo ::endgroup::
- name: Upload Docs - name: Upload Docs
shell: bash shell: bash
run: | run: |
echo ::group::Upload Docs
BUILD_DIR=${{ steps.build-docs.outputs.build-dir }} BUILD_DIR=${{ steps.build-docs.outputs.build-dir }}
${{ github.action_path }}/upload.ros "${BUILD_DIR}" ${{ github.action_path }}/upload.ros "${BUILD_DIR}"
echo ::endgroup::