mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-25 13:50:15 +08:00
try to free disk space using better script
This commit is contained in:
parent
713c3f06af
commit
0a1b118cd4
27
.github/workflows/docker-build.yml
vendored
27
.github/workflows/docker-build.yml
vendored
@ -6,16 +6,29 @@ env:
|
|||||||
IMAGE_NAME: hiddenswitch/comfyui
|
IMAGE_NAME: hiddenswitch/comfyui
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: [ self-hosted, Linux, X64, cpu ]
|
runs-on: "ubuntu-latest"
|
||||||
container: "ubuntu:22.04"
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
packages: write
|
packages: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: insightsengineering/disk-space-reclaimer@v1
|
||||||
- name: Kaniko build
|
|
||||||
uses: aevea/action-kaniko@master
|
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
android: true
|
||||||
|
dotnet: true
|
||||||
|
haskell: true
|
||||||
|
large-packages: true
|
||||||
|
docker-images: true
|
||||||
|
swap-storage: true
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
image: comfyui
|
- uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: |
|
||||||
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
|
||||||
|
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}
|
||||||
Loading…
Reference in New Issue
Block a user