From 6473b387ada431c20c6fc3916cc73e4348e1611d Mon Sep 17 00:00:00 2001 From: CJ Satnarine <117758228+CJSatnarine@users.noreply.github.com> Date: Mon, 31 Mar 2025 17:59:02 -0400 Subject: [PATCH] Create main.yml --- .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..6fd097f --- /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@master + 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 }}