first commit
This commit is contained in:
24
app/.github/workflows/deploy-docs.yml
vendored
Normal file
24
app/.github/workflows/deploy-docs.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
name: Deploy Docsify
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
|
||||
- name: Build Docsify site
|
||||
run: docsify serve docs --port 4000
|
||||
Reference in New Issue
Block a user