From 8995e63b72c751d9a7f45810bbbe5f24276d0c20 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Sat, 5 Feb 2022 16:03:40 -0600 Subject: [PATCH] build: fixed typo in push condition --- .github/workflows/build-multiarch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-multiarch.yml b/.github/workflows/build-multiarch.yml index 3f8d2ff1..3f37ce8c 100644 --- a/.github/workflows/build-multiarch.yml +++ b/.github/workflows/build-multiarch.yml @@ -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