Skip to content

Commit

Permalink
Create sub directories before copying
Browse files Browse the repository at this point in the history
  • Loading branch information
mdarif committed Jan 27, 2025
1 parent f0a903f commit e19c282
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
- name: Prepare artifact
run: |
mkdir -p dist/production
mkdir -p dist/production/login
mkdir -p dist/production/todo
cp -r dist/apps/dashboard/* dist/production/
cp -r dist/apps/login/* dist/production/login/
cp -r dist/apps/todo/* dist/production/todo/
Expand All @@ -59,4 +60,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v4

0 comments on commit e19c282

Please sign in to comment.