From ff85d97eab8e4a74a595fbdf37381c350bda5565 Mon Sep 17 00:00:00 2001 From: Joe Heck Date: Thu, 20 Aug 2026 12:47:57 -0700 Subject: [PATCH] removes prototype nightly builds --- .github/workflows/nightly.yml | 52 ----------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 .github/workflows/nightly.yml diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml deleted file mode 100644 index 61eac75c..00000000 --- a/.github/workflows/nightly.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Nightly build and deploy - -on: - schedule: - - cron: '0 6 * * *' - workflow_dispatch: - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: "pages" - cancel-in-progress: false - -jobs: - build-and-deploy: - if: github.repository == 'heckj/docs' - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - container: - image: swift:6.3 - steps: - - uses: actions/checkout@v7 - - - uses: actions/cache@v6 - with: - path: .workspace - key: docs-workspace-${{ hashFiles('scripts/sources.json') }} - restore-keys: | - docs-workspace- - - - name: Install Python - run: apt-get update && apt-get install -y python3 - - - name: Setup Pages - uses: actions/configure-pages@v6 - - - name: Build documentation - run: python3 scripts/build_docs.py --output-dir "$GITHUB_WORKSPACE/build-output" --extra-hosting-prefix docs - - - name: Upload artifact - uses: actions/upload-pages-artifact@v5 - with: - path: 'build-output' - - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v5