Files
sow-tools/.gitea/workflows/test-image.yml
T
archvillainette e9d82816b7
test-image / build-image (push) Successful in 46s
test / test (push) Successful in 1m20s
Release workflow revision (#1)
Adds a manual release workflow and ensures images are only published on v* tags

Reviewed-on: #1
Co-authored-by: vickydotbat <vickydotbat@tutamail.com>
Co-committed-by: vickydotbat <vickydotbat@tutamail.com>
2026-06-16 13:08:10 +00:00

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