1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00

docker-build action: fix syntax error, use env. for conditionals (#427)

Signed-off-by: James Hillyerd <james@hillyerd.com>
This commit is contained in:
James Hillyerd
2023-11-12 12:30:35 -08:00
committed by GitHub
parent 72adb5561d
commit 3e06050771

View File

@@ -47,14 +47,14 @@ jobs:
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
if: $REGISTRY_PUSH
if: ${{ env.REGISTRY_PUSH == 'true' }}
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
if: $REGISTRY_PUSH
if: ${{ env.REGISTRY_PUSH == 'true' }}
uses: docker/login-action@v2
with:
registry: ghcr.io
@@ -66,6 +66,6 @@ jobs:
with:
context: .
platforms: linux/amd64,linux/arm64, linux/arm/v7
push: $REGISTRY_PUSH
push: ${{ env.REGISTRY_PUSH == 'true' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}