From 381a10f547bd2ab5319ea108720d7479d38a80aa Mon Sep 17 00:00:00 2001 From: pml68 Date: Mon, 22 Sep 2025 02:47:06 +0200 Subject: chore: remove GitHub stuff --- .github/workflows/deploy.yml | 55 -------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 .github/workflows/deploy.yml (limited to '.github/workflows') diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 2f59c7a..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: Deploy to GitHub Pages - -on: - release: - types: [published] - workflow_dispatch: - -jobs: - build_site: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Install pnpm - uses: pnpm/action-setup@v3 - with: - version: 8 - - - name: Install NodeJS - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: pnpm - - - name: Install dependencies - run: pnpm install - - - name: Build - env: - BASE_PATH: '' - run: | - pnpm build - - - name: Upload files - uses: actions/upload-pages-artifact@v3 - with: - path: 'build/' - - deploy: - needs: build_site - runs-on: ubuntu-latest - - permissions: - pages: write - id-token: write - - environment: - name: github-pages - url: ${{steps.deployment.outputs.page_url}} - - steps: - - name: Deploy - id: deployment - uses: actions/deploy-pages@v4 -- cgit v1.2.3