diff --git a/.github/workflows/conan-package-create.yml b/.github/workflows/conan-package-create.yml index 2d35fa5a63..0cdcf84f19 100644 --- a/.github/workflows/conan-package-create.yml +++ b/.github/workflows/conan-package-create.yml @@ -174,9 +174,3 @@ jobs: run: | conan upload ${{ inputs.recipe_id_full }} -r cura --all -c conan upload ${{ inputs.recipe_id_latest }} -r cura --all -c - - - name: Upload the Package(s) community - if: ${{ inputs.conan_upload_community && always() }} - run: | - conan upload ${{ inputs.recipe_id_full }} -r cura-ce -c - conan upload ${{ inputs.recipe_id_latest }} -r cura-ce -c diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 74e1fb8d12..2ba4cf3ec0 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -129,10 +129,6 @@ jobs: if: always() run: conan remove ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura -f || true - - name: Remove the latest alias from cura-ce - if: always() - run: conan remove ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura-ce -f || true - - name: Create the latest alias if: always() run: conan alias ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} ${{ needs.conan-recipe-version.outputs.recipe_id_full }} @@ -142,8 +138,6 @@ jobs: run: | conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -r cura --all -c conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura --all -c - conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_full }} -r cura-ce -c - conan upload ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} -r cura-ce -c notify-create: if: ${{ always() && (github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'master' || needs.conan-recipe-version.outputs.is_release_branch == 'true')) }} diff --git a/.github/workflows/conan-recipe-export.yml b/.github/workflows/conan-recipe-export.yml index d263320556..a9436d1d58 100644 --- a/.github/workflows/conan-recipe-export.yml +++ b/.github/workflows/conan-recipe-export.yml @@ -92,10 +92,6 @@ jobs: if: always() run: conan remove ${{ inputs.recipe_id_latest }} -r cura -f || true - - name: Remove the latest alias from cura-ce - if: always() - run: conan remove ${{ inputs.recipe_id_latest }} -r cura-ce -f || true - - name: Create the latest alias if: always() run: conan alias ${{ inputs.recipe_id_latest }} ${{ inputs.recipe_id_full }} @@ -105,9 +101,3 @@ jobs: run: | conan upload ${{ inputs.recipe_id_full }} -r cura --all -c conan upload ${{ inputs.recipe_id_latest }} -r cura --all -c - - - name: Upload the Package(s) community - if: ${{ inputs.conan_upload_community && always() }} - run: | - conan upload ${{ inputs.recipe_id_full }} -r cura-ce -c - conan upload ${{ inputs.recipe_id_latest }} -r cura-ce -c