From 24a430bfd466dd4ecbefeb18d2dbe73ebbd95bd1 Mon Sep 17 00:00:00 2001 From: Nils Knappmeier Date: Sat, 8 Jun 2024 20:14:18 +0200 Subject: [PATCH] chore: github pages next try --- .github/{workflows.yml => workflows/deploy-pages.yml} | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) rename .github/{workflows.yml => workflows/deploy-pages.yml} (85%) diff --git a/.github/workflows.yml b/.github/workflows/deploy-pages.yml similarity index 85% rename from .github/workflows.yml rename to .github/workflows/deploy-pages.yml index 34371f4..c1da692 100644 --- a/.github/workflows.yml +++ b/.github/workflows/deploy-pages.yml @@ -24,21 +24,18 @@ concurrency: cancel-in-progress: false jobs: - # Build job build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 with: - fetch-depth: 0 # Not needed if lastUpdated is not enabled - # - uses: pnpm/action-setup@v3 # Uncomment this if you're using pnpm - # - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun + fetch-depth: 0 - name: Setup Node uses: actions/setup-node@v4 with: node-version: 20 - cache: npm # or pnpm / yarn + cache: npm - name: Setup Pages uses: actions/configure-pages@v4 - name: Install dependencies