Fix issues with DNF converter logging. Fix behavior for duplicate sta… #85
This file contains hidden or 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: Docs | |
| on: | |
| push: | |
| branches: [ master ] | |
| permissions: | |
| actions: read | |
| pages: write | |
| id-token: write | |
| # cancels any pending pages deployments so there is only one workflow running at any given time | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: false | |
| jobs: | |
| generate-docs: | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.output.page_url }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| # setup .NET | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| # Install DocFX | |
| - name: Setup DocFX | |
| run: dotnet tool update -g docfx | |
| # Build and publish docs | |
| - name: DocFX build | |
| working-directory: docs | |
| run: docfx docfx.json | |
| continue-on-error: false | |
| - name: Upload assets | |
| uses: actions/upload-pages-artifact@v4 | |
| with: | |
| path: docs/_site | |
| - name: Deploy | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |