From cd054765a835d44471afdd5b498208e9c6294f89 Mon Sep 17 00:00:00 2001 From: LoveSy Date: Thu, 28 Jul 2022 21:30:31 +0800 Subject: [PATCH] Delete doxygen.yml --- .github/workflows/doxygen.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/doxygen.yml diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml deleted file mode 100644 index 412ae1a..0000000 --- a/.github/workflows/doxygen.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Doxygen - -on: - workflow_dispatch: - push: - branches: - - master - paths: - - lsplant/src/main/jni/include/** - - README.md - - docs/** - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Check out - uses: actions/checkout@v2 - with: - submodules: 'recursive' - - name: Install doxygen - run: sudo apt install -y doxygen - - name: Generate doxygen - run: doxygen docs/doxygen.cfg - - name: Push to docs branch - run: | - cd docs/docs - git config --global user.name "github-actions[bot]" - git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" - git init - git add . - git commit -m "docs" - git push "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" HEAD:docs -f