Skip to content

Commit 67d565c

Browse files
committed
First version of deploy docs script
1 parent ec96de4 commit 67d565c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/deploy-docs.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build and Deploy docs
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
build-and-deploy:
8+
concurrency: docs-${{ github.ref }}
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout 🛎️
12+
uses: actions/checkout@v3
13+
14+
- name: Install and Build 🔧
15+
run: |
16+
cd docs
17+
npm ci
18+
npm run generate
19+
20+
- name: Deploy 🚀
21+
uses: JamesIves/[email protected]
22+
with:
23+
branch: gh-pages # The branch the action should deploy to.
24+
folder: docs/dist # The folder the action should deploy.
25+
clear: true

0 commit comments

Comments
 (0)