From f79249b3ae3be9be585b5559ac0e28373bef1e8d Mon Sep 17 00:00:00 2001 From: Diwank Singh Tomer Date: Sat, 28 Sep 2024 14:57:36 -0400 Subject: [PATCH] fix: Bake on release as well (#532) Enhance workflows to bake images on release and generate changelogs from release notes. - **Workflows**: - Update `.github/workflows/bake-push-to-hub.yml` to trigger on `release` events in addition to `push` to `dev` and tags `v*`. - Update `.github/workflows/changelog-ci.yml` to trigger on `release` events and generate changelog from release notes using `rhysd/changelog-from-release/action@v3`. --- .github/workflows/bake-push-to-hub.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bake-push-to-hub.yml b/.github/workflows/bake-push-to-hub.yml index eb6dd9168..9a5be0c90 100644 --- a/.github/workflows/bake-push-to-hub.yml +++ b/.github/workflows/bake-push-to-hub.yml @@ -7,7 +7,9 @@ on: - "dev" tags: - "v*" - + release: + types: [published] + jobs: Bake-Push-Images: runs-on: ubuntu-latest