aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
blob: 0af200dcd5ded9b8ac19a886372f81ece9853e42 (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 ${{ secrets.DOMAIN }}
          PAGES_BRANCH: gh-pages
          TOKEN: ${{ secrets.GITHUB_TOKEN }}