From c659a9100a8e14dfb6367a03a315578cf61d932f Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 13 Apr 2024 15:33:28 -0400 Subject: [PATCH] Putting together CI pipeline --- .github/workflows/deploy.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..b1eec3c --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,36 @@ +name: Build & Deploy Site + +on: + push: + +jobs: + build_dev: + name: Development Build + if: github.ref != 'refs/heads/main' + runs-on: ubuntu-latest + + steps: + - name: Checkout main + uses: actions/checkout@v4 + + - name: Build only + uses: shalzz/zola-deploy-action@v0.18.0 + env: + BUILD_DIR: public + BUILD_ONLY: true + BUILD_FLAGS: --drafts + + build_prod: + name: Production Build + if: github.ref == 'refs/heads/main' + runs-on: ubuntu-latest + + steps: + - name: Checkout main + uses: actions/checkout@v4 + + - name: Build only + uses: shalzz/zola-deploy-action@v0.18.0 + env: + BUILD_DIR: public + BUILD_ONLY: true