Skip to content

Commit a46f6d5

Browse files
🩹 [Patch]: Update README.md to reflect changes in script path examples for better clarity and consistency
1 parent ec9a97a commit a46f6d5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

‎README.md‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ The `Script` supports the following formats:
7474
- Inline script, although it is recommended to use a script file for better tooling support and linting capabilities.
7575
- Multi-line script.
7676
- Path to a script file.
77-
- `tests/info.ps1`
78-
- `.\tests\info.ps1`
79-
- `./tests/info.ps1`
80-
- `. .\tests\info.ps1`
81-
- `. ./tests/info.ps1`
82-
- `. '.\tests\info.ps1'`
83-
- `. './tests/info.ps1'`
77+
- `scripts/main.ps1`
78+
- `.\scripts\main.ps1`
79+
- `./scripts/main.ps1`
80+
- `. .\scripts\main.ps1`
81+
- `. ./scripts/main.ps1`
82+
- `. '.\scripts\main.ps1'`
83+
- `. './scripts/main.ps1'`
8484

8585
> [!IMPORTANT]
8686
> Use `${{ github.action_path }}/<pathToScript.ps1>` if you are creation an action of your own using this action as a step. This will ensure that

0 commit comments

Comments
 (0)