From 00cec87c4d74918f6d70c762f8117890324eaf65 Mon Sep 17 00:00:00 2001 From: joe miller Date: Tue, 31 Oct 2023 16:23:57 -0700 Subject: [PATCH] gha: ignore tag pushes --- .github/workflows/main.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index a22e3c1..0570136 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -1,5 +1,8 @@ name: main -on: [push] +on: + push: + tags-ignore: + - '*' # TODO: break this up into separate workflows for a more idiomatic GHA setup. anything that is doing "if branch" is a candidate