| 1234567891011121314151617 |
- name: Github Page Publish
- on:
- push:
- branches:
- - main
- jobs:
- github-page:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Deploy
- uses: peaceiris/actions-gh-pages@v3
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./www
|