diff options
| author | pml68 <contact@pml68.dev> | 2025-09-22 02:47:06 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-09-22 02:47:06 +0200 |
| commit | 381a10f547bd2ab5319ea108720d7479d38a80aa (patch) | |
| tree | 44074f3390a31219869dd6b8caa49636ee34f1a8 /.github/workflows/deploy.yml | |
| parent | feat: fix SCSS deprecation warning (diff) | |
| download | pml68.dev-381a10f547bd2ab5319ea108720d7479d38a80aa.tar.gz | |
chore: remove GitHub stuff
Diffstat (limited to '')
| -rw-r--r-- | .github/workflows/deploy.yml | 55 |
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 |
