Skip to content

Commit

Permalink
try mv with *
Browse files Browse the repository at this point in the history
  • Loading branch information
srliao committed Apr 11, 2024
1 parent 434aa59 commit ae6896b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ jobs:
- name: checkout current repo
uses: actions/checkout@v3
- name: move dist into current repo folder
run: mv ./gcsim/ui/packages/embed/dist ./cmd/preview/
run: |
mkdir ./cmd/preview/dist
mv ./gcsim/ui/packages/embed/dist/* ./cmd/preview/dist
ls -lh ./cmd/preview
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
Expand Down

0 comments on commit ae6896b

Please sign in to comment.