Skip to content

Commit

Permalink
Added step to remove unwanted folders
Browse files Browse the repository at this point in the history
  • Loading branch information
AnXh3L0 authored Jul 30, 2024
1 parent 560b8f1 commit ff69207
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ jobs:
- name: Create CNAME file
run: echo 'bridgebeam.design' > public/CNAME

- name: Remove unwanted files
run: |
find public/de public/en -type d \( -name features -o -name clients -o -name deliverables -o -name plans \) -exec rm -rf {} +
- name: Beautify HTML files
run: find public/ -type f -name "*.html" -exec js-beautify --html -r -m 1 "{}" \;

Expand Down

0 comments on commit ff69207

Please sign in to comment.