fix(ci): use correct condition to build docker images

This commit is contained in:
Thales Macedo Garitezi 2022-01-18 16:52:26 -03:00
parent 06e31830fb
commit e157064e24
No known key found for this signature in database
GPG Key ID: DD279F8152A9B6DD
1 changed files with 4 additions and 3 deletions

View File

@ -504,8 +504,9 @@ jobs:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- uses: docker/build-push-action@v2
if: ${{ matrix.build_elixir == 'no_elixir' }}
with:
push: ${{ github.event_name == 'release' && !github.event.release.prerelease && matrix.build_elixir == 'no_elixir' }}
push: ${{ github.event_name == 'release' && !github.event.release.prerelease }}
pull: true
no-cache: true
platforms: linux/amd64,linux/arm64
@ -519,9 +520,9 @@ jobs:
context: source
- name: build docker image with elixir
uses: docker/build-push-action@v2
if: ${{ matrix.profile == 'emqx' }}
if: ${{ matrix.profile == 'emqx' && matrix.build_elixir == 'with_elixir' }}
with:
push: ${{ github.event_name == 'release' && !github.event.release.prerelease && matrix.build_elixir == 'with_elixir' }}
push: ${{ github.event_name == 'release' && !github.event.release.prerelease }}
pull: true
no-cache: true
platforms: linux/amd64,linux/arm64