From a08014ad2e52dc2660a50b0d1bda211ca12572e5 Mon Sep 17 00:00:00 2001 From: Guyamor Anton Ajit Ananthadevan <41226903+ntn888@users.noreply.github.com> Date: Fri, 3 Nov 2023 07:59:45 +1100 Subject: [PATCH] Create main.yml for zola deploy --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..6ed0b0c --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +# 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/zola-deploy-action@v0.17.2 + env: + # Target branch + PAGES_BRANCH: gh-pages + # Provide personal access token + # TOKEN: ${{ secrets.TOKEN }} + # Or if publishing to the same repo, use the automatic token + TOKEN: ${{ secrets.GITHUB_TOKEN }}