Skip to content

Fix font weight (#1) #4

Fix font weight (#1)

Fix font weight (#1) #4

Workflow file for this run

---
name: Build Container Image
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: write
jobs:
build:
name: Build and Publish Container Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to the GitHub container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker Image
uses: docker/build-push-action@v4
with:
context: .
target: generator
cache-from: type=gha
cache-to: type=gha,mode=max
push: true
tags: |
ghcr.io/esphome/component-image-generator:${{ github.sha }}
ghcr.io/esphome/component-image-generator:latest