20 lines
489 B
YAML
20 lines
489 B
YAML
# Test-build the Crucible image on PRs and main. Proves `nix build .#image`
|
|
# still works (daemonless, Nix-built OCI tarball) but does NOT publish —
|
|
# release publishing happens in build-image.yml on v* tags.
|
|
name: test-image
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
build-image:
|
|
runs-on: nix-docker
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with: { fetch-depth: 0 }
|
|
|
|
- name: Build OCI image (daemonless, no publish)
|
|
run: nix build .#image
|