Update update-site.yml

This commit is contained in:
streetturtle 2022-01-23 15:06:31 -05:00 committed by GitHub
parent 7240c1a775
commit a327834155
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,18 +9,18 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Rename readme files
- name: Generate md
run: ./scripts/update_site.sh
- name: Push to gh-pages branch
run: |
./scripts/update_site.sh
git config --global user.name 'GitHub Action'
git config --global user.email 'action@github.com'
git stash
git checkout gh-pages
rm -rf ./_widgets
git stash pop
git add ./_widgets
git commit -m "update from master"
git fetch
git checkout gh-pages
git merge master
git checkout master
git reset --hard HEAD~3 # Go back 3 commits. You *will* lose uncommitted work.
git checkout gh-pages
git push origin gh-pages