From 1af670f648e1364acf18bfad1a98e92576330063 Mon Sep 17 00:00:00 2001 From: Andrea Valassi Date: Mon, 30 Sep 2024 15:01:17 +0200 Subject: [PATCH] [install] in archiver.yml, fix 'you may only define one of `tags` and `tags-ignore` for a single event' --- .github/workflows/archiver.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/archiver.yml b/.github/workflows/archiver.yml index da86e14002..dd559c2359 100644 --- a/.github/workflows/archiver.yml +++ b/.github/workflows/archiver.yml @@ -21,10 +21,9 @@ on: tags: # Include version tags such as 'cudacpp_for3.6.0_v1.0.0' or 'cudacpp_for3.6.0_v1.0.0_test001' - '${{ env.TAGPREFIX }*_v*' - - tags-ignore: # Exclude running tags such as 'cudacpp_for3.6.0_latest' - - '${{ env.TAGPREFIX }*_latest' + # See https://github.com/orgs/community/discussions/25114 + - '!${{ env.TAGPREFIX }*_latest' #----------------------------------------------------------------------------------------------------------------------------------