buildbot/nix-eval Build done.
buildbot/nix-build Build done.
buildbot/nix-effects Build done.
Build images / Build (builder) (push) Failing after 51s
Build images / Build (immich) (push) Failing after 45s
Build images / Build (sword-container-builder) (push) Failing after 49s
Build images / Build (vm-test) (push) Failing after 2m33s
Build images / Build (bitwarden) (push) Failing after 1m16s
29 lines
606 B
YAML
29 lines
606 B
YAML
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"
|