From b616ae8531bcbf8dc1d0fbe32aa028cb8078a59e Mon Sep 17 00:00:00 2001 From: Darryl Hein Date: Sat, 27 Jul 2024 23:03:20 -0600 Subject: [PATCH] correct main branch name --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ceac5874..a00227bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,10 +3,10 @@ name: CI on: push: branches: - - main + - master pull_request: branches: - - main + - master jobs: static: @@ -68,7 +68,7 @@ jobs: deploy_staging: runs-on: ubuntu-latest needs: static - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/master' environment: staging env: APP_ENV: dev @@ -107,7 +107,7 @@ jobs: deploy_prod: runs-on: ubuntu-latest needs: static - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/master' environment: production steps: - name: Checkout code