From 8555749d21a6f33c6c446d0d3e6f751c8ceda244 Mon Sep 17 00:00:00 2001 From: James Date: Thu, 15 Feb 2024 14:46:51 +0100 Subject: [PATCH] fix(ci): Add support for tags in workflow The commit adds support for triggering the workflow on tags, in addition to the existing branches. This allows for automated builds and tests when a new tag is created. --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6041e3b..de785b9 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -5,11 +5,11 @@ on: branches: - master - develop + tags: + - '*' pull_request: branches: - - master - develop - env: CARGO_TERM_COLOR: always