Skip to content

Commit

Permalink
Merge pull request #45 from mattyg/doc/windows-glob-paths
Browse files Browse the repository at this point in the history
Document gotcha about windows paths
  • Loading branch information
AButler authored Nov 11, 2024
2 parents 98bdb18 + 1d653e4 commit b208845
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
| Name | Description | Examples |
| ------------- | ------------------------------------------------------------------------------------------------- | -------------------------------------------------------- |
| `files` | The glob of files to upload (semicolon separate multiple globs) | `file.txt` <br> `file*.txt` <br> `file_{a,b}.txt;*.json` |
| `files` | The glob of files to upload (semicolon separate multiple globs). <br>Always use forward-slashes for glob expressions, even for Windows paths. | `file.txt` <br> `file*.txt` <br> `file_{a,b}.txt;*.json` <br> `/path/to/file.txt` <br> `C:/path/to/file*.txt` |
| `repo-token` | The GitHub token to use to amend the release _(recommended to use `${{ secrets.GITHUB_TOKEN }}`)_ | `${{ secrets.GITHUB_TOKEN }}` |
| `release-id` | _(Optional)_ Explicitly specify the release id | `42` |
| `release-tag` | _(Optional)_ Explicity specify the tag of the release | `v1.0.0` |
Expand Down

0 comments on commit b208845

Please sign in to comment.