Update Docker workflow (#62)

This commit is contained in:
Slava 2023-07-11 19:36:21 +03:00 committed by GitHub
parent 230e7276e2
commit d082dc71be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 33 deletions

View File

@ -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