diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index 7e1d605..af5df84 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -5,6 +5,7 @@ on: jobs: deploy: + name: "[Prototype] Prepare Release" runs-on: ubuntu-latest steps: - name: Use Node.js 20 diff --git a/scripts/createSnippetDefenition.ps1 b/scripts/createSnippetDefenition.ps1 index 85ba5a1..b910273 100644 --- a/scripts/createSnippetDefenition.ps1 +++ b/scripts/createSnippetDefenition.ps1 @@ -11,7 +11,7 @@ $commands = @() foreach ($command in $allCommands) { $commandDocs = ConvertFrom-Markdown -Path $command - $html = New-Object -Com 'HTMLFile' + $html = New-Object -ComObject 'HTMLFile' $html.write([ref]$commandDocs.Html) $title = $html.all.tags('h1')[0]