Skip to content

Update index.md

Update index.md #103

Workflow file for this run

name: gh-pages
on:
push:
branches:
- "main"
paths-ignore:
- 'README.md'
- '.github/dependabot.yml'
- 'docs/**'
- 'app/Dockerfile'
- 'chart/**'
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.109.0'
- name: Build
run: |
cd app
hugo --minify --baseURL "https://mathieu-benoit.github.io"
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./app/public