From 0a1b118cd4a700d7ee82e5134602ea6af28f3137 Mon Sep 17 00:00:00 2001 From: doctorpangloss <@hiddenswitch.com> Date: Fri, 7 Feb 2025 07:23:01 -0800 Subject: [PATCH] try to free disk space using better script --- .github/workflows/docker-build.yml | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index f34c963b3..49b6b554e 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -6,16 +6,29 @@ env: IMAGE_NAME: hiddenswitch/comfyui jobs: build: - runs-on: [ self-hosted, Linux, X64, cpu ] - container: "ubuntu:22.04" + runs-on: "ubuntu-latest" permissions: contents: read packages: write steps: - - uses: actions/checkout@v4 - - name: Kaniko build - uses: aevea/action-kaniko@master + - uses: insightsengineering/disk-space-reclaimer@v1 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 }} - image: comfyui \ No newline at end of file + - uses: docker/build-push-action@v6 + with: + context: . + push: true + tags: | + ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest + ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} \ No newline at end of file