Returned build docs step.
This commit is contained in:
parent
48d6ae50ee
commit
3d23beecad
1 changed files with 12 additions and 0 deletions
12
.github/actions/build-docs/action.yml
vendored
12
.github/actions/build-docs/action.yml
vendored
|
@ -22,13 +22,25 @@ runs:
|
||||||
|
|
||||||
qlot exec ros install docs-builder
|
qlot exec ros install docs-builder
|
||||||
echo ::endgroup::
|
echo ::endgroup::
|
||||||
|
- name: Build Docs
|
||||||
|
id: build-docs
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -Eeuo pipefail
|
||||||
|
echo ::group::Build Docs
|
||||||
|
|
||||||
|
build-docs ${{ inputs.asdf-system }} output.dir
|
||||||
|
|
||||||
|
echo ::endgroup::
|
||||||
|
|
||||||
- name: Upload Docs
|
- name: Upload Docs
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
set -Eeuo pipefail
|
set -Eeuo pipefail
|
||||||
echo ::group::Upload Docs
|
echo ::group::Upload Docs
|
||||||
|
|
||||||
${{ github.action_path }}/upload.ros "$(cat output.dir)"
|
${{ github.action_path }}/upload.ros "$(cat output.dir)"
|
||||||
|
|
||||||
echo ::endgroup::
|
echo ::endgroup::
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
|
Loading…
Reference in a new issue