From 1f77bfedf3cfc2b0a58637ad772ee2fa01f2923a Mon Sep 17 00:00:00 2001 From: Matt Bell Date: Mon, 12 Aug 2024 14:22:31 +1000 Subject: [PATCH] chore: Update docker image build workflow to include develop branch --- .github/workflows/docker-image.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 4206e09..d90ef9d 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -59,10 +59,10 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - # Build combined ARM/x86-64 image on master branch + # Build combined ARM/x86-64 image on master and develop branches - name: Build and push cmfive ARM/x86-64 image uses: docker/build-push-action@v6 - if: github.ref == 'refs/heads/master' + if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' with: context: . push: true @@ -76,7 +76,7 @@ jobs: # Build x86-64 image on other branches - name: Build and push cmfive x86-64 image uses: docker/build-push-action@v6 - if: github.ref != 'refs/heads/master' + if: github.ref != 'refs/heads/master' && github.ref != 'refs/heads/develop' with: context: . push: true