From 85038d0dc3571aeafb3085c16d5a64acd1ded82e Mon Sep 17 00:00:00 2001 From: Daniel Cronqvist Date: Sat, 17 Aug 2024 21:50:54 +0200 Subject: [PATCH] Add docs deployment workflow --- .github/workflows/deploy-docs.yml | 41 +++++++++++++++++++++++++++++++ .github/workflows/tests.yml | 2 +- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/deploy-docs.yml diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml new file mode 100644 index 0000000..e83a26d --- /dev/null +++ b/.github/workflows/deploy-docs.yml @@ -0,0 +1,41 @@ +on: + push: + branches: + - master + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + actions: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + deploy-docs: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + - name: Setup DocFX + run: dotnet tool update -g docfx + - name: Build docs + run: make docs-build + - name: Upload docs + uses: actions/upload-pages-artifact@v3 + with: + path: docs/_site + - name: Deploy docs + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 90c7e5a..b2187bc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,7 +5,7 @@ on: - dev jobs: - build: + tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2