Skip to content

Commit

Permalink
update deploy yml
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianoEger committed Jun 12, 2024
1 parent e7dd5f5 commit cb02d45
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ jobs:
- run: git branch -D gh-pages || true
- run: git checkout --orphan gh-pages
- run: find . -mindepth 1 -maxdepth 1 ! -name 'decoders' ! -name '.git' -exec rm -rf {} +
- run: find . -type f ! \( -iname "*.png" -o -iname "*.svg" \) -exec rm -f {} +
- run: |
find . -type f ! \( -iname "*.png" -o -iname "*.svg" \) -exec rm -f {} +
find . -mindepth 1 -maxdepth 1 -type d ! -name ".git" -exec rm -rf {} +
- run: |
git config --global user.email "[email protected]"
git config --global user.name "TagoIO"
Expand Down

0 comments on commit cb02d45

Please sign in to comment.