Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
870d165
create runpod docker and related files
Square-Zero-Labs Feb 2, 2026
b9a53ff
update to 8.76
Square-Zero-Labs Sep 30, 2025
2a28705
update to 8.994
Square-Zero-Labs Oct 7, 2025
d6c8a99
update to v9.01
Square-Zero-Labs Oct 22, 2025
cf9d5fc
update to v 9.10
Square-Zero-Labs Oct 24, 2025
8f69c65
add infinitetalk tutorial
Square-Zero-Labs Oct 25, 2025
f2039d8
update to v9.21
Square-Zero-Labs Oct 27, 2025
bd42508
update to 9.3 with follow up fix commits
Square-Zero-Labs Nov 3, 2025
42db05a
add wan alpha tutorial
Square-Zero-Labs Nov 6, 2025
1237e6d
update to 9.41
Square-Zero-Labs Nov 9, 2025
80df515
update to 9.42 with ovi 1.1
Square-Zero-Labs Nov 11, 2025
84158fa
update to 9.43
Square-Zero-Labs Nov 13, 2025
83b5365
update to 9.52
Square-Zero-Labs Nov 22, 2025
db357d9
update to 9.62
Square-Zero-Labs Nov 25, 2025
d435954
update to 9.72
Square-Zero-Labs Nov 28, 2025
2bc53cf
update lora paths based on new dir structure
Square-Zero-Labs Nov 30, 2025
4bf9cb0
add optional hf header
Square-Zero-Labs Nov 30, 2025
f3fbc3f
update to 9.73
Square-Zero-Labs Dec 3, 2025
b6aa990
update to 9.74 and add save masks flag
Square-Zero-Labs Dec 5, 2025
1694bb0
update to 9.81
Square-Zero-Labs Dec 8, 2025
aa19048
update to 9.84
Square-Zero-Labs Dec 12, 2025
473cb37
update to 9.9
Square-Zero-Labs Dec 19, 2025
85c5ede
update commit hash
Square-Zero-Labs Dec 19, 2025
505a15b
update to 9.92
Square-Zero-Labs Dec 25, 2025
873a0b1
update to 10.01
Square-Zero-Labs Jan 3, 2026
74e371c
update to 10.10
Square-Zero-Labs Jan 8, 2026
1682ed9
update for fixes to 10.10
Square-Zero-Labs Jan 8, 2026
674644a
update to version 10.11
Square-Zero-Labs Jan 10, 2026
dece541
update to 10.20
Square-Zero-Labs Jan 12, 2026
7bb2ee2
update v10.40
Square-Zero-Labs Jan 18, 2026
b4865a2
add finetune with old vae
Square-Zero-Labs Jan 19, 2026
4dcf3ee
update to 10.42
Square-Zero-Labs Jan 21, 2026
9b724d6
update to 10.54
Square-Zero-Labs Jan 28, 2026
d0b686f
update to 10.60
Square-Zero-Labs Feb 2, 2026
c168ddb
update to 10.70
Square-Zero-Labs Feb 4, 2026
4f7a3da
add ltx2 refiner notes
Square-Zero-Labs Feb 5, 2026
02b0c5a
feb 5 fixes
Square-Zero-Labs Feb 5, 2026
08f64ff
update to v10.80
Square-Zero-Labs Feb 10, 2026
1b8e799
update to 10.84
Square-Zero-Labs Feb 14, 2026
3693ae4
add justdubit finetune
Square-Zero-Labs Feb 18, 2026
e123bf0
update to v10.951
Square-Zero-Labs Feb 20, 2026
82ae5fd
update to 10.98
Square-Zero-Labs Mar 6, 2026
d0cf564
update to v10.981
Square-Zero-Labs Mar 7, 2026
da0d2b3
fix onnxruntime-gpu version
Square-Zero-Labs Mar 10, 2026
73f23c6
update to v10.9873
Square-Zero-Labs Mar 13, 2026
9921c16
update to v10.9874
Square-Zero-Labs Mar 16, 2026
4bad454
update to v11
Square-Zero-Labs Mar 26, 2026
de59981
update to v11.20
Square-Zero-Labs Apr 5, 2026
f055245
update to v11.30
Square-Zero-Labs Apr 14, 2026
7ffc7a6
update to v11.31
Square-Zero-Labs Apr 15, 2026
c0dd48f
update base to ubuntu 2404
Square-Zero-Labs Apr 16, 2026
db547f0
Revert "update base to ubuntu 2404"
Square-Zero-Labs Apr 16, 2026
a02ad11
update ffmpeg
Square-Zero-Labs Apr 16, 2026
1f5f815
full video process fixes
Square-Zero-Labs Apr 19, 2026
f9aedfc
Merge pull request #67 from Square-Zero-Labs/update-4-18-2026
Square-Zero-Labs Apr 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Build and Push Docker Image

on:
push:
branches:
- main
- docker
- update-4-18-2026
tags:
- "v*"

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Free up disk space on the runner
run: |
echo "Starting disk space cleanup..."
df -h
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
echo "Finished disk space cleanup."
df -h

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver: docker-container

- name: Log in to Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest,enable={{is_default_branch}}

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: Runpod-Docker/Dockerfile
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ storage/
samples/
!.gitignore
!requirements.txt
!.github/
.DS_Store
*DS_Store
google/
Expand All @@ -51,3 +52,4 @@ settings/
wgp_config.json
plugins_local.json
loras_url_cache.json
*.log
Loading
Loading