From 1f69a0de2efd402f842883be9bfedc9faca68b15 Mon Sep 17 00:00:00 2001 From: Yavor Georgiev Date: Fri, 22 Nov 2024 12:17:59 +0100 Subject: [PATCH] Add noop evg task --- .evergreen.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.evergreen.yml b/.evergreen.yml index b348a99..acfa6be 100644 --- a/.evergreen.yml +++ b/.evergreen.yml @@ -76,6 +76,13 @@ tasks: - func: "install goreleaser" - func: "install macos notarization service" - func: "release" +# add a noop task because if the only task in a variant is git_tag_only: true Evergreen doesn't start it at all + - name: noop + commands: + - command: shell.exec + params: + shell: bash + script: echo "this is the noop task" buildvariants: # This variant is run when a new tag is out similar to github actions. @@ -85,3 +92,4 @@ buildvariants: - ubuntu2204-small tasks: - name: package_goreleaser + - name: noop