From c4dc6a35fa95c87581838d4c3bda8a7a96e21634 Mon Sep 17 00:00:00 2001 From: 2pk03 Date: Mon, 16 Mar 2026 10:13:30 +0100 Subject: [PATCH] ci: remove github pages deployment workflow --- .github/workflows/pages.yml | 64 ------------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml deleted file mode 100644 index f38faf4..0000000 --- a/.github/workflows/pages.yml +++ /dev/null @@ -1,64 +0,0 @@ -name: Pages - -on: - push: - branches: [main] - workflow_dispatch: {} - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: pages - cancel-in-progress: true - -jobs: - build: - name: build - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version-file: .nvmrc - cache: npm - - - name: Install dependencies - run: npm ci - - - name: Refresh alerts snapshot - run: node scripts/fetch-alerts.mjs - env: - MISSING_PERSON_RELEVANCE_THRESHOLD: "0" - FAIL_ON_CRITICAL_SOURCE_GAP: "0" - CRITICAL_SOURCE_PREFIXES: "cisa" - - - name: Build site - run: npm run build - env: - BASE_PATH: "/EUOSINT/" - - - name: Configure Pages - uses: actions/configure-pages@v5 - - - name: Upload Pages artifact - uses: actions/upload-pages-artifact@v3 - with: - path: dist - - deploy: - name: deploy - needs: build - runs-on: ubuntu-latest - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - steps: - - name: Deploy Pages - id: deployment - uses: actions/deploy-pages@v4