From c85e923899e494eac64d61443f75277e9a8351e0 Mon Sep 17 00:00:00 2001 From: Pax1601 Date: Mon, 22 Jul 2024 15:36:12 +0200 Subject: [PATCH] Removed documentation workflow --- .github/workflows/documentation.yml | 43 ----------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/documentation.yml diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml deleted file mode 100644 index 8ef7722b..00000000 --- a/.github/workflows/documentation.yml +++ /dev/null @@ -1,43 +0,0 @@ -# ci.yml file for GitHub Actions -name: Documentation - -on: - push: - branches: - - main - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: write - pages: write - id-token: write - -jobs: - build_docs: - runs-on: windows-latest - steps: - - name: Checkout the repository - uses: actions/checkout@v2 - - - name: Setup Node.js - uses: actions/setup-node@v2 - - - name: Install dependencies - run: npm install - working-directory: ./frontend/website - - - name: Create the docs directory locally in CI - run: npx typedoc --out ../../docs/website @types/*.d.ts src/**/*.ts - working-directory: ./frontend/website - - - name: Install Doxygen - uses: ssciwr/doxygen-install@v1 - - - name: Generate Doxygen Documentation - run: doxygen docs - working-directory: ./src - - - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@v4 - with: - folder: docs