Skip to content

Commit

Permalink
Introduce jekyll build step
Browse files Browse the repository at this point in the history
  • Loading branch information
white-gecko committed Aug 4, 2024
1 parent be58d55 commit e1c1565
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,15 @@ jobs:
uses: borales/actions-yarn@v4
with:
cmd: build # will run `yarn build` command
- run: mv dist master/docs/pad
- name: Build page
uses: actions/jekyll-build-pages@v1
with:
source: master/docs
destination: _site
- run: mv dist _site/pad
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./master/docs
publish_dir: _site
publish_branch: gh-pages

0 comments on commit e1c1565

Please sign in to comment.