diff options
author | streetturtle <streetturtle@users.noreply.github.com> | 2022-01-23 15:15:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-23 15:15:41 -0500 |
commit | 89c135f2622e7afd8cf919488cfb6690e5ea0b88 (patch) | |
tree | add4a17ab0c5f83ce4ea11aabd4b3a29f92f93ee | |
parent | 07765a6ff6855af39965c2caad1229d9a2b198c9 (diff) |
Update update-site.yml
-rwxr-xr-x | .github/workflows/update-site.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/update-site.yml b/.github/workflows/update-site.yml index ed511d9..67b4020 100755 --- a/.github/workflows/update-site.yml +++ b/.github/workflows/update-site.yml @@ -19,9 +19,13 @@ jobs: git add ./_widgets git stash git fetch + echo "git checkout gh-pages" git checkout gh-pages + echo "rm -rf ./_widgets" rm -rf ./_widgets + echo "git stash pop" git stash pop + echo "git add ./_widgets" git add ./_widgets git commit -m "update from master" git push origin gh-pages |