Skip to content

Commit

Permalink
Update copy_stoplight_docs.yml
Browse files Browse the repository at this point in the history
Removing files and folders recursively
  • Loading branch information
StefanoStream authored Dec 10, 2024
1 parent 6464717 commit b8419f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/copy_stoplight_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ jobs:
git push origin stoplight_docs --force
- name: Removing all files except Markdown Files
run: |
find . -mindepth 1 ! -name "*.md" -delete
find . -mindepth 1 -type f ! -name "*.md" -delete
find . -mindepth 1 -type d -exec rm -rf {} +
- name: Commit Changes
run: |
git add .
Expand Down

0 comments on commit b8419f7

Please sign in to comment.