Skip to content

build(deps-dev): bump mypy from 1.11.2 to 1.13.0 (#490) #291

build(deps-dev): bump mypy from 1.11.2 to 1.13.0 (#490)

build(deps-dev): bump mypy from 1.11.2 to 1.13.0 (#490) #291

Workflow file for this run

name: Build and Publish Docker Images
on:
push:
branches: [ main ]
tags: [ 'v*.*.*' ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
dockerbuild:
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v3
with:
image: tonistiigi/binfmt:latest
platforms: all
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Available platforms
run: echo ${{ steps.qemu.outputs.platforms }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: unifitoolbox/protect-archiver
tags: |
type=edge
type=semver,pattern={{version}}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: ${{ steps.meta.outputs.tags }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}