From d9becc1116dd7a7abf03b46f70ca01b3949e88d7 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Tue, 20 Aug 2024 13:54:58 -0400 Subject: [PATCH] Remove docs workflow --- .github/workflows/docs.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index c278a0e..0000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Docs - -on: - push: - branches: - - main - -jobs: - gh-pages: - name: Deploy to GitHub Pages - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: volta-cli/action@v1 - - name: Get yarn cache directory path - id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - - uses: actions/cache@v1 - id: yarn-cache - with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- - - name: Install dependencies - run: yarn install - - name: Create initial tree-sitter config file - run: yarn tree-sitter init-config - - name: Update config with desired settings - run: cp docs/config.json $HOME/.config/tree-sitter/config.json - - name: Generate highlighted file - run: yarn tree-sitter highlight --html test/highlight/highlights.hbs > docs/index.html - - name: Deploy to GitHub Pages - uses: JamesIves/github-pages-deploy-action@4.1.0 - with: - branch: gh-pages - folder: docs