P3 parser and annotations upgrade #7
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 P3 documentation | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
generate-p3-docs: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Restore packages | |
run: dotnet restore | |
- name: Run P3 Parser | |
run: dotnet run --project Docs/P3/DocsGenerator/DocsGenerator.csproj | |
- name: Add, Commit & Push changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "P3 docs updated" |