mirror of
https://github.com/esphome/home-assistant-addon.git
synced 2024-11-10 10:10:09 +01:00
2d1de2889d
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
name: Build devcontainer image
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- .devcontainer/**
|
|
schedule:
|
|
- cron: '0 0 1 * *'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- .devcontainer/**
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3.5.2
|
|
- name: Log in to the GitHub container registry
|
|
uses: docker/login-action@v2.1.0
|
|
if: github.event_name != 'pull_request'
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2.1.0
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2.5.0
|
|
- name: Build and Push
|
|
uses: docker/build-push-action@v4.0.0
|
|
with:
|
|
context: .
|
|
file: .devcontainer/Dockerfile
|
|
tags: ghcr.io/${{ github.repository_owner }}/devcontainer:addons
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
platforms: linux/amd64,linux/arm64
|