Skip to content

Commit

Permalink
create public directory on build
Browse files Browse the repository at this point in the history
  • Loading branch information
schassande authored Dec 10, 2023
1 parent 98d6256 commit 3c3366e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
with:
name: github-pages
- name: Untar
run: tar xf artifact.tar -C ./public/
run: |
mkdir public
tar xf artifact.tar -C public/
# - name: Deploy
# uses: peaceiris/[email protected]
# with:
Expand Down

0 comments on commit 3c3366e

Please sign in to comment.