From 4abcabba6ceb67c14f02defdba67d6e2d3372590 Mon Sep 17 00:00:00 2001 From: Thomas Boop <52323235+thboop@users.noreply.github.com> Date: Thu, 8 Oct 2020 20:54:09 -0400 Subject: [PATCH] Add Append keyword to windows env file example (#15955) Add -Append to the windows docs for ENV Variables --- .../actions/reference/workflow-commands-for-github-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/reference/workflow-commands-for-github-actions.md b/content/actions/reference/workflow-commands-for-github-actions.md index e7c98d0f1155..ea8628b83611 100644 --- a/content/actions/reference/workflow-commands-for-github-actions.md +++ b/content/actions/reference/workflow-commands-for-github-actions.md @@ -234,7 +234,7 @@ During the execution of a workflow, the runner generates temporary files that ca ``` steps: - - run: echo "mypath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 + - run: echo "mypath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append ``` {% endwarning %}