More grouping.
This commit is contained in:
parent
5d2a6db1c2
commit
e828dbb1a5
1 changed files with 4 additions and 0 deletions
4
.github/actions/build-docs/action.yml
vendored
4
.github/actions/build-docs/action.yml
vendored
|
@ -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::
|
||||||
|
|
Loading…
Reference in a new issue