From 305cff13c3222563ed433074b18a987ba102abf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Fern=C3=A1ndez=20L=C3=B3pez?= Date: Mon, 18 Sep 2023 09:48:21 +0200 Subject: [PATCH] chore: run build workflow on release branches too Run build workflow on release branches (vX.Y) as well. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d640d08..7ee67d4e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,9 +2,9 @@ name: Rust on: push: - branches: [ "main" ] + branches: [ "main", "v[0-9]+.[0-9]+" ] pull_request: - branches: [ "main" ] + branches: [ "main", "v[0-9]+.[0-9]+" ] env: CARGO_TERM_COLOR: always