aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/deploy.yml
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-09-22 02:47:06 +0200
committerpml68 <contact@pml68.dev>2025-09-22 02:47:06 +0200
commit381a10f547bd2ab5319ea108720d7479d38a80aa (patch)
tree44074f3390a31219869dd6b8caa49636ee34f1a8 /.github/workflows/deploy.yml
parentfeat: fix SCSS deprecation warning (diff)
downloadpml68.dev-381a10f547bd2ab5319ea108720d7479d38a80aa.tar.gz
chore: remove GitHub stuff
Diffstat (limited to '.github/workflows/deploy.yml')
-rw-r--r--.github/workflows/deploy.yml55
1 files changed, 0 insertions, 55 deletions
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