Skip to content

Commit 6dfa737

Browse files
committed
20230704B
1 parent 7ffceb4 commit 6dfa737

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ body:
1818
description: "What versions are affected? Versions must be listed as supported in the Security Policy (file: `SECURITY.md`)."
1919
multiple: true
2020
options:
21-
- "v1.6.0-beta.3"
21+
- "v1.6.0-beta.4"
2222
- "v1.5.0"
2323
- "v1.4.1"
2424
- "v1.4.0"

hugoalh.GitHubActionsToolkit/hugoalh.GitHubActionsToolkit.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@
266266
ReleaseNotes = '(Please visit https://github.com/hugoalh-studio/ghactions-toolkit-powershell/releases.)'
267267

268268
# Prerelease string of this module
269-
Prerelease = 'beta3'
269+
Prerelease = 'beta4'
270270

271271
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
272272
RequireLicenseAcceptance = $False

hugoalh.GitHubActionsToolkit/module/log.psm1

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,9 @@ Function Write-Debug {
154154
) {
155155
Write-GitHubActionsStdOutCommand -StdOutCommand 'debug' -Value $Message
156156
}
157+
If ($PassThru.IsPresent) {
158+
Write-Output -InputObject $Message
159+
}
157160
}
158161
}
159162
<#
@@ -304,10 +307,12 @@ Function Write-Raw {
304307
[Switch]$PassThru
305308
)
306309
Begin {
307-
If ($WriteIf -and $GroupTitle.Length -gt 0) {
308-
Enter-LogGroup -Title $GroupTitle
310+
If ($WriteIf) {
311+
If ($GroupTitle.Length -gt 0) {
312+
Enter-LogGroup -Title $GroupTitle
313+
}
314+
[String]$EndToken = Disable-GitHubActionsStdOutCommandProcess
309315
}
310-
[String]$EndToken = Disable-GitHubActionsStdOutCommandProcess
311316
}
312317
Process {
313318
If ($WriteIf) {
@@ -318,9 +323,11 @@ Function Write-Raw {
318323
}
319324
}
320325
End {
321-
Enable-GitHubActionsStdOutCommandProcess -EndToken $EndToken
322-
If ($WriteIf -and $GroupTitle.Length -gt 0) {
323-
Exit-LogGroup
326+
If ($WriteIf) {
327+
Enable-GitHubActionsStdOutCommandProcess -EndToken $EndToken
328+
If ($GroupTitle.Length -gt 0) {
329+
Exit-LogGroup
330+
}
324331
}
325332
}
326333
}

hugoalh.GitHubActionsToolkit/module/nodejs-wrapper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hugoalh/ghactions-toolkit-powershell-nodejs-wrapper",
3-
"version": "1.6.0-beta.3",
3+
"version": "1.6.0-beta.4",
44
"description": "A PowerShell module to provide a better and easier way for GitHub Actions to communicate with the runner machine, and the toolkit for developing GitHub Actions in PowerShell.",
55
"keywords": [
66
"gh-actions",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hugoalh/ghactions-toolkit-powershell-nodejs-wrapper",
3-
"version": "1.6.0-beta.3",
3+
"version": "1.6.0-beta.4",
44
"description": "A PowerShell module to provide a better and easier way for GitHub Actions to communicate with the runner machine, and the toolkit for developing GitHub Actions in PowerShell.",
55
"keywords": [
66
"gh-actions",

0 commit comments

Comments
 (0)