build: fixed typo in push condition

This commit is contained in:
Geoff Bourne
2022-02-05 16:03:40 -06:00
parent b65f108917
commit 8995e63b72

View File

@@ -115,7 +115,7 @@ jobs:
uses: docker/build-push-action@v2.8.0
with:
platforms: ${{ matrix.platforms }}
push: ${{ github.ref_type = 'tag' || github.ref_name == 'master' }}
push: ${{ github.ref_type == 'tag' || github.ref_name == 'master' }}
tags: ${{ steps.meta.outputs.tags }}
# ensure latest base image is used
pull: true