Skip to content

Merge pull request #76 from PeculiarVentures/fix-export-rsa-pss #93

Merge pull request #76 from PeculiarVentures/fix-export-rsa-pss

Merge pull request #76 from PeculiarVentures/fix-export-rsa-pss #93

Workflow file for this run

name: Build and Deploy documentation
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
- name: Checkout
uses: actions/checkout@v2.3.1
with:
persist-credentials: false
- name: Install dependencies
run: yarn
- name: Build docs
run: npm run docs
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.6.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs
CLEAN: true