Skip to content

Commit

Permalink
add github pages deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
barelyhuman committed Apr 2, 2023
1 parent 2670665 commit 8c9c1d3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Docs
on: [push]
jobs:
build-docs:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3

- name: Install and Build
run: make docs

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.3.3
with:
token: ${{ secrets.GH_TOKEN }}
branch: gh-pages
folder: dist

0 comments on commit 8c9c1d3

Please sign in to comment.