Skip to content

Commit c9b46fe

Browse files
authored
Add note about windows paths (#340)
* Add note about windows paths #280 Document change in glob 8.0 * Fix incorrectly escaped markdown backslashes
1 parent d4e8205 commit c9b46fe

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,8 @@ jobs:
128128

129129
> **⚠️ Note:** Notice the `|` in the yaml syntax above ☝️. That let's you effectively declare a multi-line yaml string. You can learn more about multi-line yaml syntax [here](https://yaml-multiline.info)
130130

131+
> **⚠️ Note for Windows:** Paths must use `/` as a separator, not `\`, as `\` is used to escape characters with special meaning in the pattern; for example, instead of specifying `D:\Foo.txt`, you must specify `D:/Foo.txt`. If you're using PowerShell, you can do this with `$Path = $Path -replace '\\','/'`
132+
131133
### 📝 External release notes
132134

133135
Many systems exist that can help generate release notes for you. This action supports

0 commit comments

Comments
 (0)