Skip to content

Commit

Permalink
ci: fix paths to reusable workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Sep 28, 2023
1 parent f6536a3 commit e25ee0a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/image_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Container Image Build

on:
workflow_call:

jobs:
build_image:
name: Build Image
runs-on: ubuntu-latest
18 changes: 11 additions & 7 deletions .github/workflows/workflow_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ on:
push:
branches: [main]

permissions:
contents: write

jobs:
gen_workflow_docs:
name: Auto Doc
Expand All @@ -20,28 +17,35 @@ jobs:
uses: tj-actions/auto-doc@v3
with:
reusable: true
filename: .github/workflows/doxygen_build.yaml
filename: .github/workflows/doxygen_build.yml
output: docs/doxygen_build.md

- name: Document image_build
uses: tj-actions/auto-doc@v3
with:
reusable: true
filename: .github/workflows/image_build.yml
output: docs/image_build.md

- name: Document mkdocs_build
uses: tj-actions/auto-doc@v3
with:
reusable: true
filename: .github/workflows/mkdocs_build.yaml
filename: .github/workflows/mkdocs_build.yml
output: docs/mkdocs_build.md

- name: Document pypi_publish
uses: tj-actions/auto-doc@v3
with:
reusable: true
filename: .github/workflows/pypi_publish.yaml
filename: .github/workflows/pypi_publish.yml
output: docs/pypi_publish.md

- name: Document wiki
uses: tj-actions/auto-doc@v3
with:
reusable: true
filename: .github/workflows/wiki.yaml
filename: .github/workflows/wiki.yml
output: docs/wiki.md

- name: Verify Changed files
Expand Down
7 changes: 7 additions & 0 deletions docs/image_build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# MKDocs Build

## Inputs

## Outputs

## Secrets

0 comments on commit e25ee0a

Please sign in to comment.