From d861a06d3320e0edd6f521e350e5071a2ff1e0b1 Mon Sep 17 00:00:00 2001 From: Chad Date: Sat, 11 Feb 2023 00:36:37 +1300 Subject: [PATCH] Create docfx-gh-pages.yml --- .github/workflows/docfx-gh-pages.yml | 51 ++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/docfx-gh-pages.yml diff --git a/.github/workflows/docfx-gh-pages.yml b/.github/workflows/docfx-gh-pages.yml new file mode 100644 index 000000000..9d05bcc02 --- /dev/null +++ b/.github/workflows/docfx-gh-pages.yml @@ -0,0 +1,51 @@ +# Sample workflow for building and deploying a Jekyll site to GitHub Pages +name: Deploy Jekyll with GitHub Pages dependencies preinstalled + +on: + # Runs on pushes targeting the default branch + push: + branches: ["feature/docfx"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow one concurrent deployment +concurrency: + group: "pages" + cancel-in-progress: true + +jobs: + # Build job + build: + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Pages + uses: actions/configure-pages@v3 + - name: docfx-pdf-action + # You may pin to the exact commit or the version. + # uses: VakuWare/docfx-pdf-action@c8edf99121b8375c6a0920068de633a8d0fe071f + uses: VakuWare/docfx-pdf-action@v1.4.0 + with: + args: docs/v2/docfx.json + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v1