From ad2f0d050e7836ad142966e4d9ead283033287ba Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sat, 19 Jun 2021 04:44:14 +0200 Subject: [PATCH] Remove unused GitHub Actions scheduled workflow GitHub Actions' scheduled workflows only run on the `master` branch. The `master` branch's scheduled workflow is now configured to build both the `master` and `stable` branches of the documentation. (cherry picked from commit 85bc5aa29612388463def9e42ff0a7f3ee114a4b) --- .github/workflows/build_offline_docs.yml | 31 ------------------------ 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/build_offline_docs.yml diff --git a/.github/workflows/build_offline_docs.yml b/.github/workflows/build_offline_docs.yml deleted file mode 100644 index 309ca8b71..000000000 --- a/.github/workflows/build_offline_docs.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Build documentation for offline usage -on: - schedule: - # Every week on Monday at midnight (UTC). - # This keeps the generated HTML documentation fresh. - - cron: '0 0 * * 1' - -jobs: - build: - runs-on: ubuntu-20.04 - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Install dependencies - run: | - sudo pip3 install -r requirements.txt - sudo pip3 install codespell - - # Build the HTML to upload it. - - name: Sphinx build - run: | - sphinx-build --color -d _build/doctrees -W . _build/html - - - uses: actions/upload-artifact@v2 - with: - name: godot-docs-html - path: _build/html - # Keep the current build and the previous build (in case a scheduled build failed). - # This makes it more likely to have at least one successful build available at all times. - retention-days: 15