fix: build changelog artifacts in release job

This commit is contained in:
2026-03-20 03:00:40 -07:00
parent 6749ff843c
commit f6c024d61e
3 changed files with 14 additions and 1 deletions

View File

@@ -24,6 +24,11 @@ test('release workflow verifies a committed changelog section before publish', (
assert.match(releaseWorkflow, /bun run changelog:check/);
});
test('release workflow builds changelog artifacts when fragments are pending', () => {
assert.match(releaseWorkflow, /Build changelog artifacts for release/);
assert.match(releaseWorkflow, /changelog:build --version/);
});
test('release workflow verifies generated config examples before packaging artifacts', () => {
assert.match(releaseWorkflow, /bun run verify:config-example/);
});