Skip to content

Commit

Permalink
Merge c04bb33 into 9f36a5a
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirbyrawr committed May 4, 2020
2 parents 9f36a5a + c04bb33 commit 6ca69b5
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/update-documentation.yml
@@ -0,0 +1,40 @@
# This is a basic workflow to help you get started with Actions

name: Update Documentation

# Controls when the action will run. Triggers the workflow on push
# events but only for the master branch
on:
push:
branches: [ master ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Build metadata documentation using DocFX
- name: Build Documentation Metadata
uses: Kirbyrawr/docfx-action@master
with:
args: metadata ./docfx/docfx.json

# Build documentation using DocFX
- name: Build Documentation
uses: Kirbyrawr/docfx-action@master
with:
args: build ./docfx/docfx.json

# Publish generated site using GitHub Pages
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docfx/_site

0 comments on commit 6ca69b5

Please sign in to comment.