From ed942630506a4fb88bd73e910abe32ae3cbb7e52 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Fri, 25 Aug 2023 13:53:28 +1000 Subject: [PATCH] actions: Don't run dev action when tag is pushed --- .gitea/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 5c30eba..c09eabc 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -1,6 +1,11 @@ name: Build Docker run-name: Build Docker Images -on: [push] +on: + push: + branches: + - '*' + tags-ignore: + - '*' jobs: Build Master: