mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
23 lines
385 B
YAML
23 lines
385 B
YAML
|
|
name: Deploy docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'demo'
|
|
paths:
|
|
- 'docs/**'
|
|
repository_dispatch:
|
|
types: deploy-docs
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Use Node.js 12.x
|
|
uses: actions/setup-node@v1
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
ref: demo
|
|
- run: npm install
|
|
- run: npm run docs:gh-pages
|