From 6565295af47dff450da817011e6c8e47fc53a382 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 26 Jun 2023 10:13:11 +0200 Subject: [PATCH] Update cura-installer.yml --- .github/workflows/cura-installer.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index eacea7a1f9..9572b31aee 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -295,7 +295,8 @@ jobs: with open(summary_env, "w") as f: f.write(content) - f.writelines("# ${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }} uses:\n") + f.writelines("# ${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }}\n") + f.writelines("## Conan packages:\n") for dep in sorted_deps: f.writelines(f"`{dep}`\n") @@ -312,7 +313,7 @@ jobs: with open(summary_env, "w") as f: f.write(content) - f.writelines("# ${{ steps.filename.outputs.FULL_INSTALLER_FILENAME }} installed Python modules:\n") + f.writelines("## Python modules:\n") for package in pkg_resources.working_set: f.writelines(f"`{package.key}/{package.version}`\n")