name: Build images "on": push: branches: - main jobs: build: name: "Build" runs-on: nix-latest strategy: matrix: image: - bitwarden - builder - immich - sword-container-builder - vm-test steps: - uses: actions/checkout@v5 - run: | nix build -L ".#${{ matrix.image }}" sleep 3 ls -l result podman load -i "$(readlink result)" podman login -u greg -p "${REGISTRY_PASSWORD}" podman push "src.thehellings.com/greg/${{ matrix.image }}:latest"