From 1c42b5456cb04e8eb3593534453149a811db3bae Mon Sep 17 00:00:00 2001 From: myrmidex Date: Sun, 16 Aug 2026 09:14:25 +0200 Subject: [PATCH] 57 - Build CI image on release branches too --- .forgejo/workflows/images.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/images.yml b/.forgejo/workflows/images.yml index 5e165c9..08de3a4 100644 --- a/.forgejo/workflows/images.yml +++ b/.forgejo/workflows/images.yml @@ -2,7 +2,9 @@ name: Build and Push CI Image on: push: - branches: [main] + # release/* included so a new CI image exists before the release PR is + # opened; ci.yml on that branch cannot pass until the image is published. + branches: [main, 'release/*'] paths: - 'docker/build/**' - '.forgejo/workflows/images.yml'