diff options
author | Silas Bartha <[email protected]> | 2024-08-13 17:01:09 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2024-08-13 17:01:09 -0400 |
commit | 37764eb74a03fc98d1511118816134c5e598ecc1 (patch) | |
tree | d84883fc35ec1c03954d992674d3f39e85452f0b /.github | |
parent | baed7c3c8389fd1229cec2e9bb38ba7250da6582 (diff) |
Create zola.yml
Diffstat (limited to '.github')
-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 }} |