From 76a7e667dea5f68b74d6d9520bd00b1fdef70022 Mon Sep 17 00:00:00 2001 From: jspijker Date: Tue, 28 Feb 2023 11:44:33 +0100 Subject: [PATCH] Use env --- .github/workflows/cura-installer.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index 7286df6045..621362adeb 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -275,6 +275,8 @@ jobs: - name: Summarize the used Conan dependencies shell: python + env: + FULL_INSTALLER_FILENAME: ${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }} run: | import os import json @@ -296,7 +298,7 @@ jobs: with open(output_env, "w") as f: f.write(content) - f.writelines(f"# ${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }} uses:\n") + f.writelines(f"# { os.environ['FULL_INSTALLER_FILENAME'] } uses:\n") for dep in sorted_deps: f.writelines(f"{dep}\n")