From 43164babd71c2429e4fa2e8f59f7eda767ebe120 Mon Sep 17 00:00:00 2001 From: Curtis Rueden Date: Tue, 7 Nov 2023 11:21:07 -0600 Subject: [PATCH] CI: only deploy build artifacts on the Linux node --- .github/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/build.sh b/.github/build.sh index 7da42622b..44a7909d1 100755 --- a/.github/build.sh +++ b/.github/build.sh @@ -1,3 +1,4 @@ #!/bin/sh curl -fsLO https://raw.githubusercontent.com/scijava/scijava-scripts/master/ci-build.sh -sh ci-build.sh +# NB: Only the Linux CI node should deploy build artifacts. +NO_DEPLOY=$(test "$(uname)" = Linux || echo 1) sh ci-build.sh