From 2dec9f0670d4cd3d7e7a6073dcd258cf62dab337 Mon Sep 17 00:00:00 2001 From: Sahil Singh Rana Date: Wed, 3 Apr 2024 03:45:53 +0530 Subject: [PATCH] clean --- .github/workflows/typedoc.yml | 54 ----------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 .github/workflows/typedoc.yml diff --git a/.github/workflows/typedoc.yml b/.github/workflows/typedoc.yml deleted file mode 100644 index cb7549f..0000000 --- a/.github/workflows/typedoc.yml +++ /dev/null @@ -1,54 +0,0 @@ -# Simple workflow for deploying static content to GitHub Pages -name: Deploy static content to Pages - -on: - # Runs on pushes targeting the default branch - push: - branches: ["main"] - - # 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 - -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 - - uses: pnpm/action-setup@v3 - with: - version: 8 - - name: Use Nodejs ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: 18.x - cache: "pnpm" - - name: Install dependencies - run: pnpm install --frozen-lockfile - - name: Generate typedocs - run: pnpm run typedoc - - - name: Setup Pages - uses: actions/configure-pages@v3 - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - with: - path: "./docs" - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v1