From 0b2afec8cf0da141f4ac8aa1cf4fbf6e5f320461 Mon Sep 17 00:00:00 2001 From: Chris Olsen Date: Tue, 24 Feb 2026 11:23:06 -0700 Subject: [PATCH] chore: stop deploying to the next branch --- .github/workflows/docs-next-release.yml | 35 ------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/docs-next-release.yml diff --git a/.github/workflows/docs-next-release.yml b/.github/workflows/docs-next-release.yml deleted file mode 100644 index 1e49a89ba6..0000000000 --- a/.github/workflows/docs-next-release.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Docs Next Release - -on: - push: - branches: - - next - -jobs: - build: - runs-on: ubuntu-latest - - permissions: - contents: write - - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - uses: actions/setup-node@v4 - with: - node-version: "24" - - - name: Install deps - run: npm ci - - - name: Build - run: npm run build:docs - - - name: Release - uses: JamesIves/github-pages-deploy-action@v4 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH: next - FOLDER: dist/docs