Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
```yaml steps: - run: env # Should not include environment_variables $A, $B, and $C - shell: python run: | new_environment_variables = """\ A=Algol B=Basic C=C++ """ import os with open(os.getenv(new_environment_variables), "a") as github_output: github_output.write("x") - run: env # Should include environment_variables $A, $B, and $C ```
- Loading branch information