Skip to content

Commit

Permalink
fix builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dpfaffenbauer committed Feb 28, 2020
1 parent f3eabca commit 2429aa8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dockerpush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,17 @@ jobs:
cd $DOCKERFILE
if [ -d "$matrix.php/$matrix.variant/buster" ]; then
if [ -d "${{ matrix.php }}/{{ matrix.variant }}/buster" ]; then
DOCKER_HAS_BUSTER="YES"
fi
if [ $DOCKER_HAS_BUSTER == "YES" ]; then
if [ $matrix.variant == "stretch" ]; then
if [ ${{ matrix.variant }} == "stretch" ]; then
DOCKER_TAG=="$DOCKER_TAG-stretch"
fi
fi
if [ $matrix.debug == "debug" ]; then
if [ ${{ matrix.debug }} == "debug" ]; then
DOCKER_TAG="${{ matrix.php }}-debug"
fi
Expand All @@ -112,7 +112,7 @@ jobs:
docker tag image $IMAGE_ID:$DOCKER_TAG
docker push $IMAGE_ID:$DOCKER_TAG
if [ $matrix.variant == "buster" ]; then
if [ ${{ matrix.variant }} == "buster" ]; then
echo "Tag ${{ matrix.php }}-${{ matrix.variant }}-buster"
docker tag image $IMAGE_ID:"${{ matrix.php }}-${{ matrix.variant }}-buster"
Expand Down

0 comments on commit 2429aa8

Please sign in to comment.