diff --git a/.github/workflows/conan-package-create.yml b/.github/workflows/conan-package-create.yml index 0f11ea7385..3afc39a1eb 100644 --- a/.github/workflows/conan-package-create.yml +++ b/.github/workflows/conan-package-create.yml @@ -24,7 +24,7 @@ on: type: string # FIXME: Once we have the new JFrog server up and running - conan_no_update: + conan_update: required: false type: boolean @@ -80,14 +80,14 @@ jobs: key: ${{ runner.os }}-conan - name: Create the Packages - if: ${{ inputs.conan_no_update != 'true' }} # FIXME: Once we have the new JFrog server up and running + if: ${{ inputs.conan_update != 'false' }} # FIXME: Once we have the new JFrog server up and running run: conan install ${{ inputs.recipe_id_full }} -pr:b cura_build.jinja -pr:h cura_release.jinja --build=missing --update # FIXME: Once we have the new JFrog server up and running - name: Create the Packages - if: ${{ inputs.conan_no_update == 'true' }} + if: ${{ inputs.conan_update == 'false' }} run: conan install ${{ inputs.recipe_id_full }} -pr:b cura_build.jinja -pr:h cura_release.jinja --build=missing - name: Upload the Package(s) - if: ${{ inputs.conan_no_update == 'true' }} # FIXME: Once we have the new JFrog server up and running + if: ${{ inputs.conan_update != 'false' }} # FIXME: Once we have the new JFrog server up and running run: conan upload "*" -r ultimaker --all -c diff --git a/.github/workflows/conan-recipe-export.yml b/.github/workflows/conan-recipe-export.yml index 4fdec08448..67f2493c62 100644 --- a/.github/workflows/conan-recipe-export.yml +++ b/.github/workflows/conan-recipe-export.yml @@ -28,7 +28,7 @@ on: type: string # FIXME: Once we have the new JFrog server up and running - conan_no_update: + conan_update: required: false type: boolean @@ -81,5 +81,5 @@ jobs: run: conan alias ${{ inputs.recipe_id_latest }} ${{ inputs.recipe_id_full }} - name: Upload the Package(s) - if: ${{ inputs.conan_no_update == 'true' }} # FIXME: Once we have the new JFrog server up and running + if: ${{ inputs.conan_update != 'false' }} # FIXME: Once we have the new JFrog server up and running run: conan upload "*" -r ultimaker --all -c