diff --git a/.github/workflows/doc.yaml b/.github/workflows/doc.yaml deleted file mode 100644 index b47a61e1..00000000 --- a/.github/workflows/doc.yaml +++ /dev/null @@ -1,31 +0,0 @@ -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 src/dieknow.py -docs - echo "Generated documentation" - - - name: Commit and push .dll file - run: | - git config --global user.name "Ethan Chan" - git config --global user.email "esamuelchan@gmail.com" - git add . -f - git commit -m "Auto-build DLL files using g++" || echo "No changes to commit" - git push https://$GH_PAT@github.com/eschan145/DieKnow.git main - env: - # A GitHub PAT must be set up as an Actions secret in the repository - GH_PAT: ${{ secrets.GH_PAT }} -