buildbot/nix-eval Build done.
buildbot/nix-build Build done.
buildbot/nix-effects Build done.
Build images / Build (immich) (push) Failing after 51s
Build images / Build (sword-container-builder) (push) Failing after 1m5s
Build images / Build (builder) (push) Failing after 1m14s
Build images / Build (bitwarden) (push) Failing after 1m28s
Build images / Build (vm-test) (push) Failing after 2m48s
26 lines
582 B
YAML
26 lines
582 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 }}"
|
|
- run: podman load -i "$(readlink result)"
|
|
- run: podman login -u greg -p "${REGISTRY_PASSWORD}" src.thehellings.com
|
|
- run: podman push "src.thehellings.com/greg/${{ matrix.image }}:latest"
|