From 1d06bbcebab9789010b775111b29008dcd370580 Mon Sep 17 00:00:00 2001 From: James Spence Date: Fri, 28 Jun 2024 21:43:00 -0500 Subject: [PATCH] ci: remove feat branch from deploy job config --- .github/workflows/node.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.yaml b/.github/workflows/node.yaml index 3b538a3..8ead76c 100644 --- a/.github/workflows/node.yaml +++ b/.github/workflows/node.yaml @@ -1,7 +1,7 @@ name: Build on: push: - branches: [ main, develop, "feat/github-pages" ] + branches: [ main, develop ] pull_request: branches: [ main, develop ] jobs: @@ -22,7 +22,7 @@ jobs: - run: yarn --frozen-lockfile - run: yarn test deploy: - if: github.ref == 'refs/heads/feat/github-pages' + if: github.ref == 'refs/heads/main' runs-on: ubuntu-latest needs: build