Add workflow for building comfyui-base images #14
Workflow file for this run
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: Docker build and push images | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
tags: | |
- "v*" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: docker builds | |
permissions: | |
packages: write | |
contents: read | |
runs-on: [self-hosted, linux, amd64] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.CI_DOCKERHUB_USERNAME }} | |
password: ${{ secrets.CI_DOCKERHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
${{ github.repository }} | |
tags: | | |
type=sha | |
type=ref,event=pr | |
type=ref,event=tag | |
type=sha,format=long | |
type=ref,event=branch | |
type=semver,pattern={{version}},prefix=v | |
type=semver,pattern={{major}}.{{minor}},prefix=v | |
type=raw,value=latest,enable={{is_default_branch}} | |
type=raw,value=${{ github.event.pull_request.head.ref }} | |
type=raw,value=stable,enable=${{ startsWith(github.event.ref, 'refs/tags/v') }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push livepeer docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
provenance: mode=max | |
sbom: true | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
file: docker/Dockerfile | |
labels: ${{ steps.meta.outputs.labels }} | |
annotations: ${{ steps.meta.outputs.annotations }} | |
cache-from: type=registry,ref=${{ github.repository }}:build-cache | |
cache-to: type=registry,mode=max,ref=${{ github.repository }}:build-cache |