From e592c90736504dcf337b4ce4533486156caa971e Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 14 Oct 2024 19:42:49 +0200 Subject: [PATCH] GITHUB_ENV --- .github/workflows/itinerant_ruff_fixes.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/itinerant_ruff_fixes.yml b/.github/workflows/itinerant_ruff_fixes.yml index 4a338a0..e9e9518 100644 --- a/.github/workflows/itinerant_ruff_fixes.yml +++ b/.github/workflows/itinerant_ruff_fixes.yml @@ -94,8 +94,8 @@ jobs: C=C++ """ import os - with open(os.getenv("GITHUB_OUTPUT"), "a") as github_output: - github_output.write(new_environment_variables) + with open(os.getenv("GITHUB_ENV"), "a") as github_env: + github_env.write(new_environment_variables) - run: env # Should include environment_variables $A, $B, and $C - name: Dump GitHub context env: