NmeaParser/.github/workflows/blank.yml
Workflow config file is invalid. Please check your config file: yaml: line 5: mapping values are not allowed in this context
2020-01-20 20:20:54 -08:00

24 lines
394 B
YAML

name: Publish Documentation
on:
push
brances:
- 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
use: maxheld83/ghpages@master
env:
BUILD_DIR: artifacts/docs_site
GH_PAT: ${{ secrets.GH_PAT }}