From a283f3d48585b2604874f4e3ccd82127e3b8103a Mon Sep 17 00:00:00 2001 From: CJSatnarine Date: Mon, 31 Mar 2025 19:04:19 -0400 Subject: [PATCH] trying out something in main.yml --- .github/workflows/main.yml | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 914fb39..37a83d8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,19 +1,18 @@ -# On every push this script is executed -on: push name: Build and deploy GH Pages + +on: + push: + branches: + - main + jobs: build: + name: Publish site runs-on: ubuntu-latest - if: github.ref == 'refs/heads/master' 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 }} + - name: Checkout main + uses: actions/checkout@v4 + - name: Build and deploy + uses: shalzz/zola-deploy-action@v0.20.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}