Skip to content

Commit

Permalink
fix: mkdir cli/frontend before move files
Browse files Browse the repository at this point in the history
  • Loading branch information
Maricaya committed Oct 24, 2024
1 parent 9bcfc54 commit c8c380b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/actions/check/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@ runs:
cargo deny check
- name: Install Frontend
working-directory: frontend
shell: bash
run: |
cd frontend
yarn && yarn build && mv build ../cli/frontend/ && cd ../
rm -rf ../cli/frontend
mkdir -p ../cli/frontend
yarn && yarn build && mv build ../cli/frontend/
- name: Clippy
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
working-directory: ./frontend
run: |
yarn build
rm -rf ../cli/frontend
mkdir -p ../cli/frontend
mv build ../cli/frontend/
Expand Down

0 comments on commit c8c380b

Please sign in to comment.