Add workflow for pushing docs

This commit is contained in:
Patrik Svensson 2020-08-27 15:31:12 +02:00
parent f1912b1d44
commit 3210afb698

17
.github/workflows/docs.yaml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Deploy Site
on:
workflow_dispatch
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.301' # SDK Version to use.
- run: |
cd docs
dotnet run -- deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}