From 01998d2113fbac387b0163f71139cff0c416083c Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 16 Nov 2023 13:35:13 +0100 Subject: [PATCH] Simplify conan-package.yml workflow Removed redundant workflow dispatch inputs and comments in .github/workflows/conan-package.yml. These were unnecessary for the push-based workflow and have been simplified to streamline the process and make it more efficient. Contributes to CURA-10831 --- .github/workflows/conan-package.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 46831194b1..e06b7dd2d5 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -1,27 +1,6 @@ ---- name: conan-package -# Exports the recipe, sources and binaries for Mac, Windows and Linux and upload these to the server such that these can -# be used downstream. -# -# It should run on pushes against main or CURA-* branches, but it will only create the binaries for main and release branches - on: - workflow_dispatch: - inputs: - create_binaries_windows: - required: true - default: false - description: 'create binaries Windows' - create_binaries_linux: - required: true - default: false - description: 'create binaries Linux' - create_binaries_macos: - required: true - default: false - description: 'create binaries Macos' - push: paths: - 'plugins/**'