This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
fix: Start implementing commands, now all generated SQL tables can ge… #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 📖 Publish Docs | |
on: | |
push: | |
paths: | |
- docs/** | |
- tm_admin/** | |
- mkdocs.yml | |
branches: [main] | |
# Allow manual trigger (workflow_dispatch) | |
workflow_dispatch: | |
jobs: | |
build_doxygen: | |
uses: hotosm/gh-workflows/.github/workflows/doxygen_build.yml@1.4.0 | |
with: | |
output_path: docs/apidocs | |
publish_docs: | |
uses: hotosm/gh-workflows/.github/workflows/mkdocs_build.yml@1.4.0 | |
needs: [build_doxygen] | |
with: | |
image: ghcr.io/${{ github.repository }}:ci | |
doxygen: true |