Bump docker/login-action from 3.1.0 to 3.2.0 (#879) #213
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |