Skip to content

Commit

Permalink
add test tags run
Browse files Browse the repository at this point in the history
  • Loading branch information
dpfaffenbauer committed Feb 28, 2020
1 parent 0b2a5ef commit fa10f14
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/dockerpush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,24 +83,19 @@ jobs:
DOCKERFILE="${{ matrix.php }}/${{ matrix.variant }}/${{ matrix.distro }}/${{ matrix.debug }}"
DOCKER_TAG="PHP${{ matrix.php }}-${{ matrix.variant }}"
DOCKER_HAS_BUSTER="NO"
cd $DOCKERFILE
if [ -d "${{ matrix.php }}/${{ matrix.variant }}/buster" ]; then
DOCKER_HAS_BUSTER="YES"
fi
if [ $DOCKER_HAS_BUSTER == "YES" ]; then
if [ "${{ matrix.variant }}" == "stretch" ]; then
DOCKER_TAG="$DOCKER_TAG-stretch"
fi
if [ "${{ matrix.variant }}" == "stretch" ]; then
DOCKER_TAG="$DOCKER_TAG-stretch"
fi
fi
if [ "${{ matrix.debug }}" == "debug" ]; then
DOCKER_TAG="$DOCKER_TAG-debug"
fi
cd $DOCKERFILE
echo "Tag $DOCKER_TAG"
if [ "${{ matrix.variant }}" == "buster" ]; then
Expand Down

0 comments on commit fa10f14

Please sign in to comment.