diff options
author | streetturtle <streetturtle@users.noreply.github.com> | 2022-01-23 19:24:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-23 19:24:03 -0500 |
commit | b1d20df59bec2667972b979535b45f2ca0711f53 (patch) | |
tree | 4db3c9f18efcae77d5f9efac5d701c013707a7bd | |
parent | 3da400eb67d78fa9883591888a8512cfe3279107 (diff) |
Update update-site.yml
-rwxr-xr-x | .github/workflows/update-site.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/update-site.yml b/.github/workflows/update-site.yml index c95b1d8..36db4a8 100755 --- a/.github/workflows/update-site.yml +++ b/.github/workflows/update-site.yml @@ -17,17 +17,18 @@ jobs: git config --global user.name 'GitHub Action' git config --global user.email 'action@github.com' git add ./_widgets + git add ./assets git stash git fetch echo "git checkout gh-pages" git checkout gh-pages - echo "rm -rf ./_widgets" rm -rf ./_widgets + rm -rf ./assets ls -alF echo "git stash pop" git checkout stash -- ./_widgets - echo "git add ./_widgets" git add ./_widgets + git add ./assets git commit -m "update from master" git push origin gh-pages |