From e14e671c6c6973e149d2f9af8afdeba3bfd5cb4d Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Wed, 19 Aug 2026 10:56:10 -0400 Subject: [PATCH] ci(deploy): remove obsolete GitHub Actions deploy workflow --- .github/_workflows/deploy.yml | 44 ----------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/_workflows/deploy.yml diff --git a/.github/_workflows/deploy.yml b/.github/_workflows/deploy.yml deleted file mode 100644 index 8d934fd..0000000 --- a/.github/_workflows/deploy.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Deploy Docs - -on: - push: - branches: [main] - workflow_dispatch: - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: pages - cancel-in-progress: true - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - with: - node-version: 22 # Blume requires 22.12+ - - - uses: oven-sh/setup-bun@v2 # skip if you use npm/pnpm - - - run: bun install --frozen-lockfile - - run: bun run build - - - uses: actions/upload-pages-artifact@v3 - with: - path: dist - - deploy: - needs: build - runs-on: ubuntu-latest - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - steps: - - id: deployment - uses: actions/deploy-pages@v4