Skip to content

Merge pull request #20 from gitsrc/feat_update_project #14

Merge pull request #20 from gitsrc/feat_update_project

Merge pull request #20 from gitsrc/feat_update_project #14

Workflow file for this run

name: Pages
on:
push:
branches:
- main # Set a branch name to trigger deployment
jobs:
deploy:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- run: mv README.md doc/index.md
- name: Deploy Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc
enable_jekyll: true