From a200d605751c3c71c3ec810a366e42993cf6f6c0 Mon Sep 17 00:00:00 2001 From: Chris Blank Date: Tue, 5 Mar 2024 18:50:30 +0100 Subject: [PATCH] add links in manifest to enable direct links in psgallery (#3388) --- .github/workflows/CI.yaml | 4 +++- .github/workflows/Release.yaml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index cd97e5828..834b36b20 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -198,7 +198,9 @@ jobs: -FunctionsToExport $functionsToExport ` -AliasesToExport $aliasesToExport ` -CompanyName "Microsoft" ` - -ReleaseNotes $versionReleaseNotes + -ReleaseNotes $versionReleaseNotes ` + -LicenseUri 'https://github.com/microsoft/navcontainerhelper/blob/master/LICENSE' ` + -ProjectUri 'https://github.com/microsoft/navcontainerhelper' $certFileName = Join-Path ([System.IO.Path]::GetTempPath()) "$([GUID]::NewGuid().ToString()).pfx" Download-File -sourceUrl '${{ secrets.CodeSignCertificateUrl }}' -destinationFile $certFileName diff --git a/.github/workflows/Release.yaml b/.github/workflows/Release.yaml index d5e8b0db8..51953b06d 100644 --- a/.github/workflows/Release.yaml +++ b/.github/workflows/Release.yaml @@ -67,7 +67,9 @@ jobs: -FunctionsToExport $functionsToExport ` -AliasesToExport $aliasesToExport ` -CompanyName "Microsoft" ` - -ReleaseNotes $versionReleaseNotes + -ReleaseNotes $versionReleaseNotes ` + -LicenseUri 'https://github.com/microsoft/navcontainerhelper/blob/master/LICENSE' ` + -ProjectUri 'https://github.com/microsoft/navcontainerhelper' $certFileName = Join-Path ([System.IO.Path]::GetTempPath()) "$([GUID]::NewGuid().ToString()).pfx" Download-File -sourceUrl '${{ secrets.CodeSignCertificateUrl }}' -destinationFile $certFileName