From d082dc71be0328b6755ac70b2d716b711aad5be5 Mon Sep 17 00:00:00 2001 From: Slava <20563034+veaceslavdoina@users.noreply.github.com> Date: Tue, 11 Jul 2023 19:36:21 +0300 Subject: [PATCH] Update Docker workflow (#62) --- .github/workflows/docker.yml | 35 ++--------------------------------- 1 file changed, 2 insertions(+), 33 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 4b24198..6cdeb69 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -6,7 +6,7 @@ on: branches: - master tags: - - "v*.*.*" + - 'v*.*.*' paths-ignore: - '**/*.md' - '.gitignore' @@ -65,7 +65,6 @@ jobs: type=sha,suffix=-${{ env.SUFFIX }},enable=${{ !startsWith(github.ref, 'refs/tags/') }} - name: Docker - Set tags output - if: github.event_name != 'pull_request' id: tags run: | if [[ '${{ matrix.target.os }}' == 'linux' && '${{ matrix.target.arch }}' == 'amd64' ]]; then @@ -75,40 +74,12 @@ jobs: fi - name: Docker - Login to Docker Hub - if: github.event_name != 'pull_request' uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Docker - Build and export to Docker - id: build - uses: docker/build-push-action@v4 - with: - context: . - file: ${{ env.DOCKER_FILE }} - platforms: ${{ env.PLATFORM }} - load: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - - - name: Docker - Minify image - uses: kitabisa/docker-slim-action@v1 - id: slim - env: - DSLIM_HTTP_PROBE: false - with: - target: ${{ steps.meta.outputs.tags }} - overwrite: true - - - name: Docker - Show slim report - run: echo "${REPORT}" | jq -r - env: - REPORT: ${{ steps.slim.outputs.report }} - - - name: Docker - Push to Docker registry - if: github.event_name != 'pull_request' - id: push + - name: Docker - Build and Push uses: docker/build-push-action@v4 with: context: . @@ -121,7 +92,6 @@ jobs: # Publish single image publish: name: Push single image - if: github.event_name != 'pull_request' runs-on: ubuntu-latest needs: build steps: @@ -152,4 +122,3 @@ jobs: inputs: ${{ env.TAGS }} images: ${{ needs.build.outputs.tags-linux-amd64 }},${{ needs.build.outputs.tags-linux-arm64 }} push: true -