mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-11-05 09:29:42 +01:00
2e42d2fc9e
Bumps [docker/login-action](https://github.com/docker/login-action) from 1.13.0 to 1.14.1. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1.13.0...v1.14.1) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
56 lines
1.4 KiB
YAML
56 lines
1.4 KiB
YAML
name: Build docker image on changes
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- Dockerfile
|
|
- requirements_test.txt
|
|
- .github/workflows/docker.yml
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
jobs:
|
|
build-image:
|
|
runs-on: ubuntu-latest
|
|
name: Build and push Docker image
|
|
steps:
|
|
-
|
|
name: Checkout source code
|
|
uses: actions/checkout@v2.3.4
|
|
-
|
|
name: Log in to docker hub
|
|
uses: docker/login-action@v1.14.1
|
|
with:
|
|
username: ${{ secrets.DOCKER_USER }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
-
|
|
name: Log in to the GitHub container registry
|
|
uses: docker/login-action@v1.14.1
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
-
|
|
name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1.2.0
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1.6.0
|
|
-
|
|
name: Build and Push
|
|
uses: docker/build-push-action@v2.9.0
|
|
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,linux/arm/v7
|