From a8c1df6cea40c88ad39b5f8d1800bf741f5d2a6b Mon Sep 17 00:00:00 2001 From: Graham Hall Date: Sat, 17 Jan 2026 19:10:02 -0500 Subject: [PATCH] =?UTF-8?q?remove=20github=20actions=20again=20?= =?UTF-8?q?=F0=9F=98=B5=E2=80=8D=F0=9F=92=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 55 ------------------------------------ 1 file changed, 55 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 0bcb4eb..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: 'Deploy static site' -on: - push: - branches: [main] - workflow_dispatch: - -jobs: - build: - name: Build - runs-on: ubuntu-latest - steps: - - name: Checkout your repository - uses: actions/checkout@v4 - - - name: Install pnpm - uses: pnpm/action-setup@v3 - with: - version: 10 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 22 - cache: 'pnpm' - - - name: Install dependencies - run: pnpm install - - - name: Build your Astro site - run: pnpm run build - - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: ./dist - name: astro-build - - deploy: - name: Sevalla Deploy - runs-on: ubuntu-latest - needs: build - steps: - - name: Download build artifact - uses: actions/download-artifact@v4 - with: - name: astro-build - path: ./artifact - - - uses: sevalla-hosting/sevalla-deploy@v1.0.1 - with: - action: deploy-static-site - sevalla-token: ${{ secrets.SEVALLA_TOKEN }} - static-site-id: ${{ secrets.STATIC_SITE_ID }} - branch: main - wait-for-finish: true