mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-16 12:55:53 +08:00
Split uploading Artifactory cura and cura-ce
Contributes to CURA-9365
This commit is contained in:
parent
61996e5af6
commit
763768e26d
13
.github/workflows/conan-package-create.yml
vendored
13
.github/workflows/conan-package-create.yml
vendored
@ -28,6 +28,11 @@ on:
|
|||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
|
|
||||||
|
conan_upload_community:
|
||||||
|
required: false
|
||||||
|
default: true
|
||||||
|
type: boolean
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }}
|
CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }}
|
||||||
CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }}
|
CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }}
|
||||||
@ -105,6 +110,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload the Package(s)
|
- name: Upload the Package(s)
|
||||||
if: always()
|
if: always()
|
||||||
run: |
|
run: conan upload "*" -r cura --all -c
|
||||||
conan upload "*" -r cura --all -c
|
|
||||||
conan upload "*" -r cura-ce -c
|
- name: Upload the Package(s) community
|
||||||
|
if: ${{ always() && inputs.conan_upload_community == 'true' }}
|
||||||
|
run: conan upload "*" -r cura-ce -c
|
||||||
|
14
.github/workflows/conan-recipe-export.yml
vendored
14
.github/workflows/conan-recipe-export.yml
vendored
@ -35,6 +35,11 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: boolean
|
type: boolean
|
||||||
|
|
||||||
|
conan_upload_community:
|
||||||
|
required: false
|
||||||
|
default: true
|
||||||
|
type: boolean
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }}
|
CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }}
|
||||||
CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }}
|
CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }}
|
||||||
@ -98,7 +103,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload the Package(s)
|
- name: Upload the Package(s)
|
||||||
if: always()
|
if: always()
|
||||||
run: |
|
run: conan upload "*" -r cura --all -c
|
||||||
# Only use --all (upload binaries) for the cura repository
|
|
||||||
conan upload "*" -r cura --all -c
|
- name: Upload the Package(s) community
|
||||||
conan upload "*" -r cura-ce -c
|
if: ${{ always() && inputs.conan_upload_community == 'true' }}
|
||||||
|
run: conan upload "*" -r cura-ce -c
|
||||||
|
Loading…
x
Reference in New Issue
Block a user