aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
blob: d9da935c2505a761e94f64e1f2e1328d04bf6214 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
on: push
name: Build and deploy GitHub Pages
jobs:
  build:
    runs-on: ubuntu-latest
    if: github.ref == 'refs/heads/main'
    steps:
      - name: checkout
        uses: actions/checkout@v3.0.0
      - name: build_and_deploy
        uses: shalzz/zola-deploy-action@v0.17.2
        env:
          PAGES_BRANCH: gh-pages
          TOKEN: ${{ secrets.GITHUB_TOKEN }}