Commit 0a073d8a authored by Russell Dickenson's avatar Russell Dickenson

Merge branch 'ci-environments-windows-clarification' into 'master'

Docs: Add note to help Windows Runner users in writing dotenv files

See merge request gitlab-org/gitlab!79118
parents 72bcd7c1 8cd991ce
......@@ -312,6 +312,14 @@ Note the following:
for these jobs. This ensures that runners can fetch the repository even after a feature branch is
deleted. For more information, see [Ref Specs for Runners](../pipelines/index.md#ref-specs-for-runners).
NOTE:
For Windows runners, using `echo` to write to `.env` files may fail. Using the PowerShell `Add-Content`command
will help in such cases. For example:
```powershell
Add-Content -Path deploy.env -Value "DYNAMIC_ENVIRONMENT_URL=$DYNAMIC_ENVIRONMENT_URL"
```
## Track newly included merge requests per deployment
GitLab can track newly included merge requests per deployment.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment