diff options
author | vin <git@vineetk.net> | 2024-01-15 18:48:55 -0500 |
---|---|---|
committer | vin <git@vineetk.net> | 2024-01-15 18:48:55 -0500 |
commit | 8c8e1ad4d3f6a197cc7a0550940e0c71d84c050e (patch) | |
tree | 9490341e61543f88a23ca04af668abb3acfe2574 /.github/workflows/docs.yml | |
parent | 105f3f893c6cd636e895c1da2d5efbe525a49b42 (diff) |
remove unused dotfiles in root
Diffstat (limited to '.github/workflows/docs.yml')
-rw-r--r-- | .github/workflows/docs.yml | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index a6944e1816..0000000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Generate Docs - -permissions: - contents: write - -on: - push: - branches: - - master - paths: - - 'tmk_core/**' - - 'quantum/**' - - 'platforms/**' - - 'docs/**' - - '.github/workflows/docs.yml' - -jobs: - generate: - runs-on: ubuntu-latest - container: ghcr.io/qmk/qmk_cli - - # protect against those who develop with their fork on master - if: github.repository == 'qmk/qmk_firmware' - - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 1 - - - name: Install dependencies - run: | - apt-get update && apt-get install -y rsync nodejs npm doxygen - npm install -g moxygen - - - name: Build docs - run: | - qmk --verbose generate-docs - - - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4.4.3 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BASE_BRANCH: master - BRANCH: gh-pages - FOLDER: .build/docs - GIT_CONFIG_EMAIL: hello@qmk.fm |