Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/docs-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,18 @@ jobs:
restore-keys: |
${{ env.CACHE_KEY_PREFIX }}-bazel-${{ runner.os }}-

- name: Check Graphviz installation
id: graphviz
shell: bash
run: |
if command -v dot >/dev/null 2>&1; then
echo "installed=true" >> "$GITHUB_OUTPUT"
else
echo "installed=false" >> "$GITHUB_OUTPUT"
fi

- name: Install Graphviz
if: ${{ steps.graphviz.outputs.installed != 'true' }}
uses: eclipse-score/apt-install@main
with:
packages: graphviz
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,18 @@ jobs:
retention-days: 5
if-no-files-found: ignore

- name: Check Graphviz installation
id: graphviz
shell: bash
run: |
if command -v dot >/dev/null 2>&1; then
echo "installed=true" >> "$GITHUB_OUTPUT"
else
echo "installed=false" >> "$GITHUB_OUTPUT"
fi

- name: Install Graphviz
if: ${{ steps.graphviz.outputs.installed != 'true' }}
uses: eclipse-score/apt-install@bd30e2e74a4850389719cb8c3e312bb26aada4e0 # v1.0.0
with:
packages: graphviz
Expand Down
Loading