diff options
Diffstat (limited to '.github/workflows/zola.yml')
-rw-r--r-- | .github/workflows/zola.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/zola.yml b/.github/workflows/zola.yml new file mode 100644 index 0000000..4c15aae --- /dev/null +++ b/.github/workflows/zola.yml @@ -0,0 +1,17 @@ +# On every push this script is executed +on: push +name: Build and deploy GH Pages +jobs: + build: + runs-on: ubuntu-latest + if: github.ref == 'refs/heads/main' + steps: + - name: checkout + uses: actions/checkout@v4 + - name: build_and_deploy + uses: shalzz/[email protected] + env: + # Target branch + PAGES_BRANCH: gh-pages + # use the automatic token + TOKEN: ${{ secrets.GITHUB_TOKEN }} |