From fe8686438ddf3d67f8ce8a138d469dd55d76f7a9 Mon Sep 17 00:00:00 2001 From: "j.spijker@ultimaker.com" Date: Tue, 19 Jul 2022 07:45:17 +0200 Subject: [PATCH] Only upload ultimaker and _ to artifactory Contributes to CURA-9365 --- .github/workflows/conan-recipe-export.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/conan-recipe-export.yml b/.github/workflows/conan-recipe-export.yml index 4e055c87ac..a26d14da70 100644 --- a/.github/workflows/conan-recipe-export.yml +++ b/.github/workflows/conan-recipe-export.yml @@ -100,5 +100,7 @@ jobs: if: always() run: | # Only use --all (upload binaries) for the cura repository - conan upload "*" -r cura --all -c - conan upload "*" -r cura-ce -c + conan upload "*@ultimaker/*" -r cura --all -c + conan upload "*@_/_" -r cura --all -c + conan upload "*@ultimaker/*" -r cura-ce -c + conan upload "*@_/_" -r cura-ce -c