From 33b76f9691a81034fc3ab64a6c008f5e326f3ad9 Mon Sep 17 00:00:00 2001 From: Janos <86970079+janosdebugs@users.noreply.github.com> Date: Wed, 15 May 2024 15:38:11 +0200 Subject: [PATCH] Removing always-failing dev deploy (#297) Signed-off-by: Janos <86970079+janosdebugs@users.noreply.github.com> --- .github/workflows/deploy-dev.yml | 38 -------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/deploy-dev.yml diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml deleted file mode 100644 index 0a6c3dc4..00000000 --- a/.github/workflows/deploy-dev.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Deploy to Cloudflare Pages - -on: - pull_request: - workflow_dispatch: - -permissions: - contents: read - deployments: write - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - submodules: 'true' - - name: Setup Node - uses: actions/setup-node@v3 - with: - node-version: "18" - - name: Install dependencies - run: npm ci - - name: Lint code - run: npm run lint - - name: Build website - run: npm run build - - name: Publish to Cloudflare Pages - id: publish - uses: cloudflare/pages-action@v1 - with: - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - projectName: opentf-website - directory: ./build - gitHubToken: ${{ secrets.GITHUB_TOKEN }} - wranglerVersion: 3