29 lines
607 B
YAML
Executable File
29 lines
607 B
YAML
Executable File
name: update site
|
|
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Generate md
|
|
run: ./scripts/update_site.sh
|
|
|
|
- name: Push to gh-pages branch
|
|
run: |
|
|
git config --global user.name 'GitHub Action'
|
|
git config --global user.email 'action@github.com'
|
|
git add ./_widgets
|
|
git stash
|
|
git fetch
|
|
git checkout gh-pages
|
|
rm -rf ./_widgets
|
|
git stash pop
|
|
git add ./_widgets
|
|
git commit -m "update from master"
|
|
git push origin gh-pages
|
|
|