Skip to content

Commit

Permalink
Fix wrong output folder name in GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
helenclx committed Jun 2, 2024
1 parent a3b2a29 commit a20d4b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
npm install && npm run build
cd ..
mkdir -p deploy/1-digital-business-card
cp -r 1-digital-business-card/build/* deploy/1-digital-business-card/
cp -r 1-digital-business-card/dist/* deploy/1-digital-business-card/
# travel-journal project
- name: Build travel-journal
Expand All @@ -41,7 +41,7 @@ jobs:
npm install && npm run build
cd ..
mkdir -p deploy/2-travel-journal
cp -r 2-travel-journal/build/* deploy/2-travel-journal/
cp -r 2-travel-journal/dist/* deploy/2-travel-journal/
# quizzical project
- name: Build quizzical
Expand All @@ -50,7 +50,7 @@ jobs:
npm install && npm run build
cd ..
mkdir -p deploy/3-quizzical
cp -r 3-quizzical/build/* deploy/3-quizzical/
cp -r 3-quizzical/dist/* deploy/3-quizzical/
- name: Setup Pages
uses: actions/configure-pages@v4
Expand Down

0 comments on commit a20d4b6

Please sign in to comment.