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