Skip to content

Commit

Permalink
fix: remove possible cached local folders before "mv ./a2j-app/* ./" …
Browse files Browse the repository at this point in the history
…to avoid "Directory not empty" error message
  • Loading branch information
SannyNguyenHung committed Jan 22, 2024
1 parent 57c2423 commit 6cdfa4e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-content.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ jobs:
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: npx playwright install --with-deps chromium

- name: Remove possible cached folders
run: |
rm -rf ./app
rm -rf ./public
rm -rf ./build
- id: fetchLatestImageApp
run: ./docker.sh --appFromImage && mv --force ./a2j-app/* ./

Expand Down

0 comments on commit 6cdfa4e

Please sign in to comment.