Skip to content

revert disable

revert disable #29

Workflow file for this run

name: documentation
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
environment: github-pages
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: "16.x"
- uses: webfactory/ssh-agent@v0.5.0
with:
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY_SSH_KEY }}
- name: Release to GitHub Pages
env:
USE_SSH: true
GIT_USER: ${{ secrets.GIT_USER }}
run: |
git config --global user.email "${{ secrets.GIT_EMAIL }}"
git config --global user.name "${{ secrets.GIT_NAME }}"
yarn install --frozen-lockfile
npm run deploy