Skip to content

Commit

Permalink
ci: deploy to GH pages
Browse files Browse the repository at this point in the history
  • Loading branch information
denysvitali authored Nov 26, 2024
1 parent 55433cd commit e100d6c
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,14 @@ jobs:
yarn install
yarn run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
- name: Upload static files as artifact
id: deployment
uses: actions/upload-pages-artifact@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
path: dist/
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit e100d6c

Please sign in to comment.