From 3a98ca0f37ba5a44a1e9a77a95ff10c7d644fd72 Mon Sep 17 00:00:00 2001 From: Michael Adams Date: Sun, 18 Feb 2024 01:34:54 -0800 Subject: [PATCH] Changed the GitHub Actions CI workflow so that it is not run for a pushed tag. --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21a001b4..528b2041 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,13 @@ name: ci -on: [push, pull_request] +on: + push: + branches: + - '**' + - '!mdadams-joss' + tags-ignore: + - '**' + pull_request: jobs: build: