Skip to content

Commit

Permalink
Merge pull request #2 from nzdev/docfx/pipeline
Browse files Browse the repository at this point in the history
Create docfx-gh-pages.yml
  • Loading branch information
nzdev authored Feb 10, 2023
2 parents 519c110 + d861a06 commit 6c94feb
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/docfx-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6c94feb

Please sign in to comment.