From 3b94be0c8838c9b9c217ba12885927cfbd5ac1b1 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Fri, 6 Sep 2024 11:51:34 -0500 Subject: [PATCH] Use variable name for source folder in create-json step --- .github/workflows/cmake-ctest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-ctest.yml b/.github/workflows/cmake-ctest.yml index 2a7037cc4..c224683c5 100644 --- a/.github/workflows/cmake-ctest.yml +++ b/.github/workflows/cmake-ctest.yml @@ -135,7 +135,7 @@ jobs: uses: jsdaniell/create-json@v1.2.3 with: name: "credentials.json" - dir: 'hdfsrc' + dir: '${{ steps.set-file-base.outputs.SOURCE_BASE }}' json: '{"Endpoint": "${{ secrets.AZURE_ENDPOINT }}","CodeSigningAccountName": "${{ secrets.AZURE_CODE_SIGNING_NAME }}","CertificateProfileName": "${{ secrets.AZURE_CERT_PROFILE_NAME }}"}' if: ${{ needs.check-secret.outputs.sign-state == 'exists' }} @@ -617,7 +617,7 @@ jobs: uses: jsdaniell/create-json@v1.2.3 with: name: "credentials.json" - dir: 'hdfsrc' + dir: '${{ steps.set-file-base.outputs.SOURCE_BASE }}' json: '{"Endpoint": "${{ secrets.AZURE_ENDPOINT }}","CodeSigningAccountName": "${{ secrets.AZURE_CODE_SIGNING_NAME }}","CertificateProfileName": "${{ secrets.AZURE_CERT_PROFILE_NAME }}"}' if: ${{ needs.check-secret.outputs.sign-state == 'exists' }}