From aa9d0798e3c65769d3d2b27097d6e1cd72d7ed36 Mon Sep 17 00:00:00 2001 From: Niccolo Borgioli Date: Wed, 5 Feb 2025 11:04:11 +0100 Subject: [PATCH] remove github runner --- .github/actions/build/action.yaml | 19 ----------------- .github/workflows/preview.yaml | 35 ------------------------------- 2 files changed, 54 deletions(-) delete mode 100644 .github/actions/build/action.yaml delete mode 100644 .github/workflows/preview.yaml diff --git a/.github/actions/build/action.yaml b/.github/actions/build/action.yaml deleted file mode 100644 index d3f0816..0000000 --- a/.github/actions/build/action.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: "Build" -description: "Install deps and build docs" - -runs: - using: "composite" - steps: - - uses: pnpm/action-setup@v2 - - uses: actions/setup-node@v3 - with: - node-version-file: .nvmrc - cache: "pnpm" - - name: Install dependencies - run: pnpm install --frozen-lockfile - shell: bash - - name: Build - run: pnpm build - shell: bash - env: - NEXT_TELEMETRY_DISABLED: "1" diff --git a/.github/workflows/preview.yaml b/.github/workflows/preview.yaml deleted file mode 100644 index b48af58..0000000 --- a/.github/workflows/preview.yaml +++ /dev/null @@ -1,35 +0,0 @@ -name: Docs - -on: - push: - branches: - - main - workflow_dispatch: - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: "pages" - cancel-in-progress: true - -jobs: - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - uses: ./.github/actions/build - - - uses: actions/configure-pages@v3 - - uses: actions/upload-pages-artifact@v1 - with: - path: "./out" - - id: deployment - uses: actions/deploy-pages@v1