From 798e1ad502ac1a7deff71aa3ae11f137bd405e2b Mon Sep 17 00:00:00 2001 From: Philipp Giese <187786+frontendphil@users.noreply.github.com> Date: Tue, 7 Jan 2025 14:16:12 +0100 Subject: [PATCH] remove duplicate worker deploy script (#474) --- .github/workflows/app-release.yaml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/app-release.yaml diff --git a/.github/workflows/app-release.yaml b/.github/workflows/app-release.yaml deleted file mode 100644 index 539dc54e8..000000000 --- a/.github/workflows/app-release.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: Deploy Pilot App - -on: - push: - branches: main - -defaults: - run: - working-directory: ./app - -jobs: - deploy: - runs-on: ubuntu-latest - name: Deploy - steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v4 - - uses: actions/setup-node@v4 - with: - node-version: latest - cache: 'pnpm' - cache-dependency-path: '**/pnpm-lock.yaml' - - run: pnpm install --prefer-offline - - run: pnpm build - - name: Deploy - uses: cloudflare/wrangler-action@v3.13.0 - with: - workingDirectory: app - apiToken: ${{ secrets.CF_API_TOKEN }} - accountId: ${{ secrets.CF_ACCOUNT_ID }}