From 99d1ee4e0a53e200e0d2998dd2117dbe56b6f298 Mon Sep 17 00:00:00 2001 From: Chemaclass Date: Tue, 16 Jun 2026 21:13:18 +0200 Subject: [PATCH] chore(ci): remove legacy Cloudflare docs publish workflow Docs are fully cut over to GitHub Pages on bashunit.com (deploy-gh-pages.yml, shipped in 0.40.0). The legacy Cloudflare workflow now fails on every push to `latest` with "Project not found" because the Cloudflare Pages project no longer exists. Its own header marked it for deletion after cutover. --- .github/workflows/publish-docs.yml | 50 ------------------------------ 1 file changed, 50 deletions(-) delete mode 100644 .github/workflows/publish-docs.yml diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml deleted file mode 100644 index c916c1f0..00000000 --- a/.github/workflows/publish-docs.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: Publish Docs - -# Legacy Cloudflare deploy for bashunit.typeddevs.com — delete once fully cut over to bashunit.com (GitHub Pages). - -on: - push: - branches: - - latest - - workflow_dispatch: - -concurrency: - group: pages - cancel-in-progress: false - -jobs: - publish: - runs-on: ubuntu-latest - permissions: - contents: read - deployments: write - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: npm - cache-dependency-path: docs/package-lock.json - - - name: Install dependencies - working-directory: docs - run: npm ci - - - name: Build with VitePress - working-directory: docs - run: npm run build - - - name: Publish to Cloudflare Pages - uses: cloudflare/pages-action@v1 - with: - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - projectName: ${{ secrets.CLOUDFLARE_PROJECT_NAME }} - directory: docs/.vitepress/dist - gitHubToken: ${{ secrets.GITHUB_TOKEN }}