From 18b3eb8f2be05a99f61080e354385ea6a6f0f026 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 6 Jan 2023 09:50:09 +0100 Subject: [PATCH] Use echo to write to GITHUB_OUTPUT Contributes to CURA-8607 --- .github/workflows/cura-installer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index e260c7c86d..596813979e 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -164,7 +164,7 @@ jobs: $pfxPath = Join-Path -Path $env:RUNNER_TEMP -ChildPath "cert.pfx"; $encodedBytes = [System.Convert]::FromBase64String($env:PFX_CONTENT); Set-Content $pfxPath -Value $encodedBytes -AsByteStream; - Add-Content [-Path] $Env:GITHUB_OUTPUT [-Value] "PFX_PATH=$pfxPath"; + echo "PFX_PATH=$pfxPath" >> $env:GITHUB_OUTPUT; - name: Clean Conan local cache if: ${{ inputs.conan_clean_local_cache }}