Bump actions/checkout from 4.1.6 to 4.1.7 (#3948) #28
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: | |
workflow_dispatch: | |
push: | |
branches: | |
- current | |
paths: | |
- requirements.txt | |
- Dockerfile | |
- .github/workflows/docker.yml | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Install pagefind | |
uses: jaxxstorm/[email protected] | |
with: | |
repo: cloudcannon/pagefind | |
- | |
name: Checkout source code | |
uses: actions/[email protected] | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
tags: | | |
esphome/esphome-docs:latest | |
ghcr.io/esphome/esphome-docs:latest | |
cache-from: ghcr.io/esphome/esphome-docs:latest |