Update Reina.Cryptography.csproj to resolve Fody.Costura issues. #31
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: Generate and Deploy Documentation | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '.github/workflows/**' | |
- 'Resources/**' | |
- 'README.md' | |
jobs: | |
build-and-deploy-docs: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
# Checks out the repository | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
# Sets up Doxygen | |
- name: Install Doxygen | |
run: sudo apt-get install doxygen | |
# Generates Documentation | |
- name: Generate Documentation | |
run: doxygen Doxyfile | |
# Deploy to GitHub Pages | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/ |