Skip to content

Commit

Permalink
GITHUB_ENV
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Oct 14, 2024
1 parent bf9879b commit e592c90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/itinerant_ruff_fixes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e592c90

Please sign in to comment.