Skip to content

Commit e3d2257

Browse files
🩹 [Refactor]: Update path construction in CI and workflow files to use forward slashes for improved compatibility
1 parent bb81184 commit e3d2257

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ jobs:
438438

439439
# LogGroup 'Data' {
440440
# $moduleName = [string]::IsNullOrEmpty('${{ inputs.Name }}') ? $env:GITHUB_REPOSITORY_NAME : '${{ inputs.Name }}'
441-
# $path = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "${{ inputs.ModulesOutputPath }}\$moduleName"
441+
# $path = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "${{ inputs.ModulesOutputPath }}/$moduleName"
442442
# $moduleManifestPath = Join-Path -Path $Path -ChildPath "$moduleName.psd1"
443443

444444
# $data = [pscustomobject]@{

‎.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ jobs:
280280

281281
# LogGroup 'Data' {
282282
# $moduleName = [string]::IsNullOrEmpty('${{ inputs.Name }}') ? $env:GITHUB_REPOSITORY_NAME : '${{ inputs.Name }}'
283-
# $path = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "${{ inputs.ModulesOutputPath }}\$moduleName"
283+
# $path = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "${{ inputs.ModulesOutputPath }}/$moduleName"
284284
# $moduleManifestPath = Join-Path -Path $Path -ChildPath "$moduleName.psd1"
285285

286286
# # Obay module manifest overrides

0 commit comments

Comments
 (0)