270a2759d9
* Add script to handle updates to the docs folder * Create gh-pages.yml * Update on-pages.sh
22 lines
359 B
YAML
22 lines
359 B
YAML
name: GitHub Pages CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'README.md'
|
|
- 'docs/**'
|
|
|
|
jobs:
|
|
|
|
build-pages:
|
|
name: Build GitHub Pages
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Copy Files
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: bash ./.github/scripts/on-pages.sh
|