From 282ab20717972fe2b09775be67e33d0428e8ca8a Mon Sep 17 00:00:00 2001 From: ralphhanna Date: Mon, 25 Mar 2024 18:03:51 -0400 Subject: [PATCH] Delete .github/workflows/deploy-to-github-pages.yml --- .github/workflows/deploy-to-github-pages.yml | 57 -------------------- 1 file changed, 57 deletions(-) delete mode 100644 .github/workflows/deploy-to-github-pages.yml diff --git a/.github/workflows/deploy-to-github-pages.yml b/.github/workflows/deploy-to-github-pages.yml deleted file mode 100644 index a54645a..0000000 --- a/.github/workflows/deploy-to-github-pages.yml +++ /dev/null @@ -1,57 +0,0 @@ -# Simple workflow for deploying static content to GitHub Pages -name: Deploy Docs to Pages - -on: - # Runs on pushes targeting the default branch - push: - branches: [rel2.0.0] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -# Allow one concurrent deployment -concurrency: - group: "pages" - cancel-in-progress: true - -env: - # Hosted GitHub runners have 7 GB of memory available, let's use 6 GB - NODE_OPTIONS: --max-old-space-size=6144 - -jobs: - # Single deploy job since we're just deploying - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: 20.x - cache: npm - - name: Install dependencies - run: npm ci - - name: Gen API Docs - run: npm run docs:generate - - name: Build Docs Site - run: npm run docs:build - - name: Setup Pages - uses: actions/configure-pages@v3 - - name: Upload artifact - uses: actions/upload-pages-artifact@v2 - with: - # Upload the folder /build generated by docusaurus - path: build - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v2