diff options
author | streetturtle <streetturtle@users.noreply.github.com> | 2022-01-23 20:14:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-23 20:14:35 -0500 |
commit | 9445849d9e41b303ea3d45a9c04685d4b86d8773 (patch) | |
tree | 18424acf333a827e7a259e31fc9c36b4e4982860 | |
parent | e66effbf9ac1691af00b04946581a5314001b7be (diff) |
Update update-site.yml
-rwxr-xr-x | .github/workflows/update-site.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/update-site.yml b/.github/workflows/update-site.yml index 5cb4ae3..bd41b32 100755 --- a/.github/workflows/update-site.yml +++ b/.github/workflows/update-site.yml @@ -17,19 +17,19 @@ jobs: git config --global user.name 'GitHub Action' git config --global user.email 'action@github.com' git add ./_widgets - git add ./assets/img + git add ./assets/img/widgets git stash git fetch echo "git checkout gh-pages" git checkout gh-pages rm -rf ./_widgets - rm -rf ./assets/img + rm -rf ./assets/img/widgets ls -alF echo "git stash pop" git checkout stash -- ./_widgets git checkout stash -- ./assets git add ./_widgets - git add ./assets/img + git add ./assets/img/widgets git commit -m "update from master" git push origin gh-pages |