From 4df221102de85d0feb61891640214fcf354fdff8 Mon Sep 17 00:00:00 2001 From: Torben Raab Date: Thu, 7 Mar 2024 13:54:31 +0100 Subject: [PATCH] Fix Frontend Build Pipeline --- .github/workflows/build-branch.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-branch.yml b/.github/workflows/build-branch.yml index 0e6cd69914..74d81a83eb 100644 --- a/.github/workflows/build-branch.yml +++ b/.github/workflows/build-branch.yml @@ -128,7 +128,7 @@ jobs: branch_build_frontend_amd64: runs-on: ubuntu-20.04 - if: ${{ github.event_name == 'release' && contains(needs.branch_build_setup.outputs.gh_buildx_platforms, 'linux/arm64') }} + if: ${{ contains(needs.branch_build_setup.outputs.gh_buildx_platforms, 'linux/arm64') }} needs: [branch_build_setup] env: FRONTEND_TAG: ${{ secrets.DOCKER_REGISTRY }}/${{ secrets.DOCKER_REPO }}/plane-frontend-amd64:${{ needs.branch_build_setup.outputs.gh_branch_name }} @@ -181,7 +181,7 @@ jobs: branch_build_frontend_arm64: runs-on: [self-hosted, linux, ARM64] - if: ${{ github.event_name == 'release' && contains(needs.branch_build_setup.outputs.gh_buildx_platforms, 'linux/arm64') }} + if: ${{ contains(needs.branch_build_setup.outputs.gh_buildx_platforms, 'linux/arm64') }} needs: [branch_build_setup] env: FRONTEND_TAG: ${{ secrets.DOCKER_REGISTRY }}/${{ secrets.DOCKER_REPO }}/plane-frontend-arm64:${{ needs.branch_build_setup.outputs.gh_branch_name }} @@ -235,7 +235,7 @@ jobs: branch_push_frontend: runs-on: ubuntu-20.04 needs: [branch_build_setup, branch_build_frontend_amd64, branch_build_frontend_arm64] - if: ${{ github.event_name == 'release' && contains(needs.branch_build_setup.outputs.gh_buildx_platforms, 'linux/arm64') }} + if: ${{ contains(needs.branch_build_setup.outputs.gh_buildx_platforms, 'linux/arm64') }} env: FRONTEND_TAG: ${{ secrets.DOCKER_REGISTRY }}/${{ secrets.DOCKER_REPO }}/plane-frontend-arm64:${{ needs.branch_build_setup.outputs.gh_branch_name }} FRONTEND_TAG_AMD64: ${{ secrets.DOCKER_REGISTRY }}/${{ secrets.DOCKER_REPO }}/plane-frontend-amd64:${{ needs.branch_build_setup.outputs.gh_branch_name }}