Skip to content

Commit

Permalink
ci: fix dep graph generation when manually publishing docs (#454)
Browse files Browse the repository at this point in the history
Graphviz missing on the runner when a manual docs publish happens.
  • Loading branch information
cwaldren-ld authored Oct 8, 2024
1 parent 868f925 commit f10543e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/publish-docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
runs:
using: composite
steps:
- uses: launchdarkly/gh-actions/actions/publish-pages@publish-pages-v1.0.1
- uses: launchdarkly/gh-actions/actions/publish-pages@publish-pages-v1.0.2
name: 'Publish to Github pages'
with:
docs_path: ${{ inputs.workspace_path }}/docs
Expand Down
1 change: 1 addition & 0 deletions .github/actions/sdk-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ runs:
uses: ./.github/actions/publish-docs
with:
workspace_path: ${{ inputs.sdk_path }}
token: ${{ inputs.github_token }}

- name: Configure MSVC
if: runner.os == 'Windows'
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/manual-publish-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16.x
registry-url: 'https://registry.npmjs.org'
- run: sudo apt-get install doxygen
- run: sudo apt-get install doxygen graphviz
- id: build
# Build using the same steps from CI.
name: Build
Expand Down

0 comments on commit f10543e

Please sign in to comment.