Skip to content

Update hasmer README.md to use .NET 8 instead of .NET 5 #33

Update hasmer README.md to use .NET 8 instead of .NET 5

Update hasmer README.md to use .NET 8 instead of .NET 5 #33

Workflow file for this run

name: Doxygen for GitHub Pages
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Doxygen
run: sudo apt-get install doxygen -y
shell: bash
- run: mkdir -p docs
shell: bash
working-directory: hasmer
- name: Generate Doxygen Documentation
run: doxygen ./Doxyfile
shell: bash
working-directory: hasmer
- name: Create .nojekyll (ensures pages with underscores work on gh pages)
run: touch docs/html/.nojekyll
shell: bash
working-directory: hasmer
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
github_token: ${{ inputs.github_token }}
branch: gh-pages
folder: hasmer/docs/html
target_folder: docs