Skip to content

Commit

Permalink
add deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joycellu committed May 27, 2024
1 parent c176a5a commit 013e145
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: production-files
path: ./dist
path: ./public

deploy:
name: Deploy
Expand All @@ -40,10 +40,10 @@ jobs:
uses: actions/download-artifact@v3
with:
name: production-files
path: ./dist
path: ./public

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
publish_dir: ./public

0 comments on commit 013e145

Please sign in to comment.