name: Deploy to GitHub Pages on: push: branches: - main jobs: deploy: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 with: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Build Link Index uses: https://github.com/jackyzha0/hugo-obsidian@v2.18 with: index: true input: content output: assets/indices root: . - name: Setup Hugo uses: https://github.com/peaceiris/actions-hugo@v2 with: hugo-version: '0.96.0' extended: true - name: Build run: hugo --minify - name: Deploy uses: https://github.com/peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public publish_branch: deploy # deploying branch cname: tablet.sh