Skip to content

Commit

Permalink
fix: copy not working if folder not exists
Browse files Browse the repository at this point in the history
  • Loading branch information
Phliipp Jenni committed Jan 13, 2024
1 parent 2e497fb commit e6ba5ec
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,12 @@ jobs:
docs
- name: Build Documentation Structure
run: |
mkdir "docs"
cp "ng16/docs/index.html" "docs/index.html"
cp "ng16/docs/bs*" "docs/ng16/"
cp "ng13/docs/bs*" "docs/ng13/"
mkdir "docs/ng16"
cp -R "ng16/docs/bs*" "docs/ng16/"
mkdir "docs/ng13"
cp -R "ng13/docs/bs*" "docs/ng13/"
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
Expand Down

0 comments on commit e6ba5ec

Please sign in to comment.