aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
blob: a24191918f5e1d2c85432110e6cff1f7e9664ec5 (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 ${{ steps.deployment.outputs.page_url }}
          PAGES_BRANCH: gh-pages
          TOKEN: ${{ secrets.GITHUB_TOKEN }}