From 20eec804ec5f470508aeb2f9d897f0b62a572219 Mon Sep 17 00:00:00 2001 From: pheralb Date: Sat, 4 Nov 2023 01:04:00 +0000 Subject: [PATCH] Delete deploy workflow. --- .github/workflows/deploy.yml | 37 ------------------------------------ 1 file changed, 37 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 7248942..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: 🚀 Deploy - -on: - push: - branches: - - main - paths: - - "website/**/*" - - ".github/workflows/deploy.yml" - -jobs: - deploy: - name: Website - runs-on: ubuntu-latest - permissions: - id-token: write - contents: read - steps: - - name: Clone repository - uses: actions/checkout@v3 - - - uses: pnpm/action-setup@v2 - with: - version: 8 - - - name: Install dependencies - run: pnpm install - - - name: Build Website - run: pnpm turbo run build --filter=website - - - name: Upload to Deno Deploy - uses: denoland/deployctl@v1 - with: - project: typethings - entrypoint: server/entry.mjs - root: website/dist