libresign/.github/workflows/deploy-docs.yml
2021-02-16 21:15:37 -03:00

23 lines
No EOL
497 B
YAML

name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Install and Build 🔧
run: |
cd docs
npm install
./node_modules/.bin/vuepress build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.0.0
with:
branch: gh-pages
folder: docs/.vuepress/dist