mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2025-12-06 07:12:04 +01:00
23 lines
410 B
YAML
23 lines
410 B
YAML
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 }}
|