Skip to content

Commit

Permalink
fix: copy files instead of moving
Browse files Browse the repository at this point in the history
  • Loading branch information
jsgalarraga committed Jun 12, 2024
1 parent 8a3bb2b commit 0afdb2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy_app_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
run: |
mkdir public
mkdir public/game
mv build/web/index.html public/game/
mv build/web/{.,}* public/
mv landing/dist/index.html public/
mv landing/dist/assets/* public/assets/
cp -pRP build/web/index.html public/game/
cp -pRP build/web/{.,}* public/
cp -pRP landing/dist/index.html public/
cp -pRP landing/dist/assets/* public/assets/
- name: Deploy landing page and game to Firebase Hosting
uses: FirebaseExtended/action-hosting-deploy@v0
Expand Down

0 comments on commit 0afdb2b

Please sign in to comment.