From 8350d2ad35e5708ac953a058fd6f6aeb4c55f9c6 Mon Sep 17 00:00:00 2001 From: Mrrp <94077364+TheFelidae@users.noreply.github.com> Date: Sun, 22 Dec 2024 13:50:44 -0800 Subject: [PATCH] Delete .github/workflows/deploy.yml --- .github/workflows/deploy.yml | 52 ------------------------------------ 1 file changed, 52 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 7a9a266..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Deploy - -on: - push: - branches: - - main - -jobs: - build: - name: Build - runs-on: ubuntu-latest - - steps: - - name: Checkout repo - uses: actions/checkout@v4 - - - name: Setup Deno - uses: denoland/setup-deno@v2 - with: - deno-version: v2.x - - - name: Install dependencies - run: deno install - - - name: Generate project as a static site - run: deno task generate - - - name: Upload production-ready build files - uses: actions/upload-artifact@v4 - with: - name: production-files - path: .output/public - - deploy: - name: Deploy - needs: build - runs-on: ubuntu-latest - if: github.ref == 'refs/heads/main' - permissions: - contents: write - steps: - - name: Download artifact - uses: actions/download-artifact@v4 - with: - name: production-files - path: ./output/public - - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./output/public \ No newline at end of file