From 1ba62ab03a052463b09a4ca1b5624e330ab0a5b2 Mon Sep 17 00:00:00 2001 From: viktorstrate Date: Mon, 29 Mar 2021 12:36:14 +0200 Subject: [PATCH] Add back docker push conditions to build action --- .github/workflows/build.yml | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 30f417c3..9305787e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ on: branches: master tags: - v* - + env: DOCKER_USERNAME: viktorstrate DOCKER_IMAGE: viktorstrate/photoview @@ -17,7 +17,7 @@ jobs: build: name: Build Docker Image runs-on: ubuntu-20.04 - + strategy: matrix: target_platform: @@ -25,7 +25,7 @@ jobs: - "linux/arm64" - "linux/arm/v7" - "linux/arm/v6" - + steps: - name: Checkout uses: actions/checkout@v2 @@ -51,15 +51,15 @@ jobs: id: prepare run: | DOCKER_PLATFORMS=${{ matrix.target_platform }} - + VERSION=edge if [[ $GITHUB_REF == refs/tags/* ]]; then VERSION=${GITHUB_REF#refs/tags/v} fi - + OUTPUT_PLATFORM=$(echo ${{ matrix.target_platform }} | sed 's/\//-/g') echo ::set-output name=output_platform::${OUTPUT_PLATFORM} - + TAG="--tag ${DOCKER_IMAGE}:${OUTPUT_PLATFORM}-${GITHUB_SHA::8}" echo ::set-output name=docker_username::${DOCKER_USERNAME} @@ -77,16 +77,19 @@ jobs: - name: Docker Build run: | docker buildx build --output "type=image,push=false" ${{ steps.prepare.outputs.buildx_args }} - + - name: Docker Login + if: success() && github.event_name != 'pull_request' && github.repository == 'photoview/photoview' run: | echo "${DOCKER_PASSWORD}" | docker login --username "${{ steps.prepare.outputs.docker_username }}" --password-stdin - name: Push to Docker Hub + if: success() && github.event_name != 'pull_request' && github.repository == 'photoview/photoview' run: | docker buildx build --output "type=image,push=true" ${{ steps.prepare.outputs.buildx_args }} - + - name: Clear + if: always() && github.event_name != 'pull_request' && github.repository == 'photoview/photoview' run: | rm -f ${HOME}/.docker/config.json @@ -94,34 +97,34 @@ jobs: name: Combine Docker Images runs-on: ubuntu-20.04 if: github.event_name != 'pull_request' && github.repository == 'photoview/photoview' - + needs: [build] - + steps: - name: Docker Login run: | echo "${DOCKER_PASSWORD}" | docker login --username "${DOCKER_USERNAME}" --password-stdin - + - name: Create Manifests run: | DOCKER_IMAGES="${DOCKER_IMAGE}:linux-amd64-${GITHUB_SHA::8}" DOCKER_IMAGES="${DOCKER_IMAGES} ${DOCKER_IMAGE}:linux-arm64-${GITHUB_SHA::8}" DOCKER_IMAGES="${DOCKER_IMAGES} ${DOCKER_IMAGE}:linux-arm-v7-${GITHUB_SHA::8}" DOCKER_IMAGES="${DOCKER_IMAGES} ${DOCKER_IMAGE}:linux-arm-v6-${GITHUB_SHA::8}" - + VERSION=edge if [[ $GITHUB_REF == refs/tags/* ]]; then VERSION=${GITHUB_REF#refs/tags/v} fi - + TAGS=("${VERSION}") - + if [[ $VERSION =~ ^(([0-9]{1,3})\.[0-9]{1,3})\.[0-9]{1,3}$ ]]; then VERSION_MINOR=${BASH_REMATCH[1]} VERSION_MAJOR=${BASH_REMATCH[2]} TAGS+=("${VERSION_MAJOR}", "${VERSION_MINOR}") fi - + for TAG in ${TAGS[*]}; do echo "Creating tag: ${TAG}" docker manifest create ${DOCKER_IMAGE}:${TAG} ${DOCKER_IMAGES}