Skip to content

Commit

Permalink
chore: disable documentation workflow
Browse files Browse the repository at this point in the history
we don't have bandwidth to maintain the documentation workflow at the moment
so we're disabling it until we can get back to it.
  • Loading branch information
aladdin-add committed Mar 28, 2023
1 parent 6376942 commit 590bbcd
Showing 1 changed file with 36 additions and 36 deletions.
72 changes: 36 additions & 36 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
name: GitHub Pages
# name: GitHub Pages

on:
push:
branches:
- main
pull_request:
# on:
# push:
# branches:
# - main
# pull_request:

jobs:
deploy:
runs-on: ubuntu-20.04
defaults:
run:
working-directory: docs
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
# jobs:
# deploy:
# runs-on: ubuntu-20.04
# defaults:
# run:
# working-directory: docs
# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# steps:
# - uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '14'
# - name: Setup Node
# uses: actions/setup-node@v3
# with:
# node-version: '14'

- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
# - name: Cache dependencies
# uses: actions/cache@v3
# with:
# path: ~/.npm
# key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
# restore-keys: |
# ${{ runner.os }}-node-

- run: npm install
- run: npm run build
- run: npm run export
# - run: npm install
# - run: npm run build
# - run: npm run export

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/out
# - name: Deploy
# uses: peaceiris/actions-gh-pages@v3
# if: ${{ github.ref == 'refs/heads/main' }}
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./docs/out

0 comments on commit 590bbcd

Please sign in to comment.