Skip to content

Publish 'rocm' to Docker Hub #24

Publish 'rocm' to Docker Hub

Publish 'rocm' to Docker Hub #24

Workflow file for this run

name: Publish 'rocm' to Docker Hub
on:
workflow_dispatch: # Can be manually triggered
schedule: # Runs on every Monday, 07:00 UTC
- cron: '0 7 * * 1'
push:
branches: [ main ]
paths-ignore:
- '**'
- '!rocm/Dockerfile'
- '!rocm/runner-scripts/**'
- '!.github/workflows/build-rocm.yml'
jobs:
build-publish-rocm:
environment: Publish to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Maximize build disk space
uses: easimon/maximize-build-space@master
with:
overprovision-lvm: 'true'
remove-android: 'true'
-
name: Git checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_ACCESSTOKEN }}
-
name: Build and push 'rocm'
uses: docker/build-push-action@v5
with:
context: ./rocm
file: ./rocm/Dockerfile
tags: yanwk/comfyui-boot:rocm
push: true