Skip to content

Add docs related files and configs #5

Add docs related files and configs

Add docs related files and configs #5

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Deploy Documents
on:
# Runs on pushes targeting the default branch
push:
branches: ["GreedyFTL.v3"]
# 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
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Doxygen Environment
uses: mattnotmitt/doxygen-action@v1.9.4
with:
additional-packages: font-noto
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Copy Images
run: sudo cp -r ./imgs ./docs
- name: Upload Documents
uses: actions/upload-pages-artifact@v1
with:
path: './docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1