Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
james-garriss committed Jan 21, 2025
1 parent 4abc7f8 commit 9337b59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_private_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ jobs:
- name: Initialize ScubaGear
run: |
$ExpectedName = 'ScubaGear'
$ExpectedDescription = 'The Secure Cloud Business Applications (SCuBA) Gear module automates conformance testing about CISA M365 Secure Configuration Baselines.'
$ExpectedDescription = 'The Secure Cloud Business Applications (SCuBA) Gear module automates\nconformance testing about CISA M365 Secure Configuration Baselines.'
$Info = Install-Module -Name ScubaGear -Repository $env:GalleryName -SkipPublisherCheck -PassThru
Write-Output "The name of the module is $($Info.Name)"
if ($Info.Name -ne $ExpectedName) {
Write-Output "::error::The name of the published module should be $ExpectedName"
}
Write-Output "The description of the module is " + $Info.Description
Write-Output "The description of the module is $($Info.Description)"
if ($Info.Description -ne $ExpectedDescription) {
Write-Output "::error::The name of the published module should be $ExpectedDescription"
}
Expand Down

0 comments on commit 9337b59

Please sign in to comment.