Merge pull request #66 from dotMorten/ghpages_action

Ghpages action
This commit is contained in:
Morten Nielsen 2020-01-20 20:24:59 -08:00 committed by GitHub
commit 85a95bee1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

22
.github/workflows/ghpages.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Publish Documentation
on:
push:
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- name: Clone NmeaParser
uses: actions/checkout@v1
- name: Build Documentation
run: build/GenerateDoc.cmd
- name: Publish Documentation
uses: maxheld83/ghpages@master
env:
BUILD_DIR: artifacts/docs_site
GH_PAT: ${{ secrets.GH_PAT }}