diff --git a/.github/workflows/doc.yaml b/.github/workflows/doc.yaml new file mode 100644 index 00000000..2523d04b --- /dev/null +++ b/.github/workflows/doc.yaml @@ -0,0 +1,19 @@ +name: Generate documentation + +on: + push: + branches: + - main + +jobs: + run-cmd: + runs-on: windows-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Build docs + shell: cmd + run: | + py dieknow.py -docs + echo "Generated documentation"