Skip to content

Upping version number #517

Upping version number

Upping version number #517

# Simple workflow for deploying static content to GitHub Pages
name: "Doxygen"
on:
push:
branches: main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Apt Update
run: sudo apt-get update
- name: Apt Install
run: sudo apt-get --no-install-recommends install doxygen graphviz wget plantuml
- name: Doxygen
run: |
export DISPLAY=':0' && \
export MAJOR=$(sed -n '1p' < version) && \
export MINOR=$(sed -n '2p' < version) && \
export PATCH=$(sed -n '3p' < version) && \
export SUFFIX=$(sed -n '4p' < version) && \
export SEM_VERSION=${MAJOR}.${MINOR}.${PATCH}${SUFFIX} && \
export GIT_HASH=$(git rev-parse --short HEAD) && \
echo "Current version ${SEM_VERSION} with #${GIT_HASH} and path ${IMAGE_DIR}" && \
mkdir -p build/docs && \
doxygen
wget https://img.shields.io/badge/version-${SEM_VERSION}-blue.svg -O build/docs/html/version.svg
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# Upload the docs
path: "build/docs/html"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3