From f253731dc0a313d115514c6a2147f1f43dfcd81b Mon Sep 17 00:00:00 2001 From: Josh Larson Date: Fri, 15 Nov 2024 13:51:45 -0600 Subject: [PATCH] Deploy using CF GitHub integration instead --- .github/workflows/publish.yml | 40 ----------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 278193ca..00000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Publish - -on: - push: - branches: - - main - -concurrency: ${{ github.workflow }}-${{ github.ref }} - -jobs: - publish_docs: - name: Publish Docs - runs-on: ubuntu-latest - steps: - - name: Checkout Repo - uses: actions/checkout@v3 - - - uses: pnpm/action-setup@v2 - with: - version: 7.26.2 - - - name: Setup Node.js 18 - uses: actions/setup-node@v3 - with: - node-version: 18 - cache: pnpm - - - name: Install Dependencies - run: pnpm i - - - name: Build - working-directory: apps/site - run: pnpm build - - - name: Publish Docs Site - uses: cloudflare/wrangler-action@2.0.0 - with: - apiToken: ${{ secrets.CF_API_TOKEN }} - workingDirectory: "apps/site" - command: publish -j