From 66158d786f309a64fc85a86eacf3c269c17eae28 Mon Sep 17 00:00:00 2001 From: Bart Date: Thu, 22 Jan 2026 16:05:15 -0500 Subject: [PATCH] ci: Properly propagate Conan credentials (#6265) The export and upload steps were initially in a separate action, where GitHub Actions does not support the `secrets` keyword, but only `inputs` for the credentials. After they were moved to a reusable workflow, only part of the references to the credentials were updated. This change correctly references to the Conan credentials via `secrets` instead of `inputs`. --- .github/workflows/reusable-upload-recipe.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-upload-recipe.yml b/.github/workflows/reusable-upload-recipe.yml index b5b8798f09..156659392e 100644 --- a/.github/workflows/reusable-upload-recipe.yml +++ b/.github/workflows/reusable-upload-recipe.yml @@ -58,8 +58,8 @@ jobs: - name: Log into Conan remote env: REMOTE_NAME: ${{ inputs.remote_name }} - REMOTE_USERNAME: ${{ inputs.remote_username }} - REMOTE_PASSWORD: ${{ inputs.remote_password }} + REMOTE_USERNAME: ${{ secrets.remote_username }} + REMOTE_PASSWORD: ${{ secrets.remote_password }} run: conan remote login "${REMOTE_NAME}" "${REMOTE_USERNAME}" --password "${REMOTE_PASSWORD}" - name: Upload Conan recipe