Skip to content

Bump docker/setup-buildx-action from 3.6.1 to 3.7.1 (#973) #250

Bump docker/setup-buildx-action from 3.6.1 to 3.7.1 (#973)

Bump docker/setup-buildx-action from 3.6.1 to 3.7.1 (#973) #250

Workflow file for this run

name: Build docker image on changes
on:
push:
branches:
- main
paths:
- Dockerfile
- requirements_test.txt
- .github/workflows/docker.yml
permissions:
contents: read
packages: write
concurrency:
# yamllint disable-line rule:line-length
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-image:
runs-on: ubuntu-latest
name: Build and push Docker image
steps:
-
name: Checkout source code
uses: actions/checkout@v4
-
name: Log in to docker hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
name: Log in to the GitHub container registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Set up QEMU
uses: docker/[email protected]
-
name: Set up Docker Buildx
uses: docker/[email protected]
-
name: Build and Push
uses: docker/[email protected]
with:
context: .
tags: |
ghcr.io/esphome/aioesphomeapi-proto-builder:latest
esphome/aioesphomeapi-proto-builder:latest
push: true
pull: true
cache-to: type=inline
cache-from: ghcr.io/esphome/aioesphomeapi-proto-builder:latest
platforms: linux/amd64,linux/arm64