Add artifact names #33
Workflow file for this run
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: Update website | |
on: | |
push: | |
tags: | |
- 'v*' | |
workflow_dispatch: | |
jobs: | |
website: | |
name: Build website and deploy to gh pages | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add version to Doxyfile | |
run: | | |
echo "PROJECT_NUMBER = ${{ github.ref_name }}" >> docs/Doxyfile | |
- name: Run Doxygen | |
uses: mattnotmitt/doxygen-action@edge | |
with: | |
doxyfile-path: 'docs/Doxyfile' | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./doc | |