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