Skip to content

Commit

Permalink
Add note about windows paths (softprops#340)
Browse files Browse the repository at this point in the history
* Add note about windows paths

softprops#280

Document change in glob 8.0

* Fix incorrectly escaped markdown backslashes
  • Loading branch information
fredemmott authored Mar 26, 2023
1 parent d4e8205 commit c9b46fe
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ jobs:

> **⚠️ 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)

> **⚠️ 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 '\\','/'`

### 📝 External release notes

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

0 comments on commit c9b46fe

Please sign in to comment.