From 97325623fe65a12d617a1518bee5425fd93531bb Mon Sep 17 00:00:00 2001 From: Nicholas Pease Date: Tue, 23 Apr 2024 00:53:06 -0400 Subject: [PATCH] Bug Fix - Remove unused Jsdoc dependency (Breaks Deployment Actions) --- .github/workflows/jsdoc.yaml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/jsdoc.yaml diff --git a/.github/workflows/jsdoc.yaml b/.github/workflows/jsdoc.yaml deleted file mode 100644 index 840df6e..0000000 --- a/.github/workflows/jsdoc.yaml +++ /dev/null @@ -1,27 +0,0 @@ -name: JSDoc to GH Pages - -on: - push: - branches: - - main - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout Code - uses: actions/checkout@v2 - - - name: Build - uses: andstor/jsdoc-action@v1 - with: - source_dir: ./frontend-next - output_dir: ./jsdoc - recurse: true - template: minami - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./jsdoc