This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
build(deps): bump andstor/file-existence-action from 2 to 3 #21
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: Docs Build/Deploy | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push events but only for the master branch | |
push: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build-and-deploy" | |
build-and-deploy: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Pre-requisites | |
run: | | |
sudo apt install doxygen | |
sudo apt install graphviz | |
# Build the docs | |
- name: Build Docs | |
run: | | |
mkdir build | |
cd build | |
cmake -DVISIONCPP_DOC_ONLY=TRUE .. | |
make doc | |
#Checks that the build created some files | |
- name: Check Build | |
id: check_build | |
uses: andstor/file-existence-action@v3 | |
with: | |
files: "build/html/visioncpp_8hpp.html" | |
# Deploys the docs to the gh-pages branch | |
- name: Deploy Docs | |
if: steps.check_build.outputs.files_exists == 'true' | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: build/html | |
git-config-name: "Github Actions" | |
git-config-email: "[email protected]" | |
commit-message: | | |
""Deploy docs to GH Pages Build: ${{github.run_number}}" -m "Commit: ${{github.sha}}"" |