From 219dcf85906f37fb1951ea5c3d3c55591b754e16 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 13 Apr 2024 16:31:27 -0400 Subject: [PATCH] Fix master branch name in CI --- .github/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 36d0e75..f081c83 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,7 +6,7 @@ on: jobs: build_dev: name: Development Build - if: github.ref != 'refs/heads/main' + if: github.ref != 'refs/heads/master' runs-on: ubuntu-latest environment: production permissions: @@ -14,7 +14,7 @@ jobs: deployments: write steps: - - name: Checkout main + - name: Checkout master uses: actions/checkout@v4 - name: Build only @@ -35,7 +35,7 @@ jobs: build_prod: name: Production Build - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/master' runs-on: ubuntu-latest environment: production permissions: @@ -43,7 +43,7 @@ jobs: deployments: write steps: - - name: Checkout main + - name: Checkout master uses: actions/checkout@v4 - name: Build only