From 13e2bf0e65a418229fbf660b1bcbc53e1dfeb69f Mon Sep 17 00:00:00 2001 From: Santtu Pajukanta Date: Mon, 4 Sep 2023 13:23:04 +0300 Subject: [PATCH] chore(ci): fix branch name in workflow --- .github/workflows/cicd.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 9b528f3..b32e69b 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -3,7 +3,7 @@ name: cicd on: push: branches: - - master + - main jobs: build: @@ -39,7 +39,7 @@ jobs: deploy: runs-on: self-hosted needs: build - if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} + if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} steps: - uses: actions/checkout@v1 - name: Get build.json from build step