You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create an expandable group in the log; Anything write to the log between functions `Enter-GitHubActionsLogGroup` and `Exit-GitHubActionsLogGroup` are inside this expandable group in the log.
24
+
Create an expandable group in the log; Anything write to the log are inside this expandable group in the log.
Get step summary that previously added/set from functions `Add-GitHubActionsStepSummary` and `Set-GitHubActionsStepSummary`.
218
+
Get the step summary.
219
219
.PARAMETERRaw
220
220
Whether to ignore newline characters and output the entire contents of a file in one string with the newlines preserved; By default, newline characters in a file are used as delimiters to separate the input into an array of strings.
221
221
.PARAMETERSizes
222
-
Whether to get step summary sizes instead of the contents.
222
+
Whether to get the sizes of the step summary instead of the contents of the step summary.
223
223
.OUTPUTS
224
224
[String] Step summary with the entire contents in one string.
225
-
[String[]] Step summary with separate contents in multiple string by newline characters.
226
-
[UInt32] Step summary sizes.
225
+
[String[]] Step summary with the entire contents in multiple strings separated by newline characters.
Copy file name to clipboardExpand all lines: hugoalh.GitHubActionsToolkit/module/tool-cache.psm1
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ Path for the expand destination.
19
19
.PARAMETERMethod
20
20
Method to expand compressed archive/file; Define this parameter will enforce to use defined method.
21
21
.PARAMETER7zrPath
22
-
Path of the 7zr, for long path support (only when parameter `Method` is `7z`).
22
+
Path of the 7zr application, for long path support (only when parameter `Method` is `7z`).
23
23
24
24
Most `.7z` archives do not have this problem, if `.7z` archive contains very long path, pass the path to `7zr` which will gracefully handle long paths, by default `7zdec` is used because it is a very small program and is bundled with the GitHub Actions NodeJS toolkit, however it does not support long paths, `7zr` is the reduced command line interface, it is smaller than the full command line interface, and it does support long paths, at the time of this writing, it is freely available from the LZMA SDK that is available on the 7-Zip website, be sure to check the current license agreement, if `7zr` is bundled with your action, then the path to `7zr` can be pass to this function.
0 commit comments