Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release-winget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
Invoke-WebRequest https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe
.\wingetcreate.exe update Microsoft.Git `
-v $version `
-o manifests `
-o . `
-u "$($asset_x64_url)|x64|machine" `
"$($asset_x64_url)|x64|user" `
"$($asset_arm64_url)|arm64|machine" `
Expand All @@ -77,6 +77,6 @@ jobs:
Write-Host -NoNewLine "::add-mask::$(Get-Content token.txt)"

# Submit the manifest to the winget-pkgs repository
$manifestDirectory = Split-Path "$manifestPath"
.\wingetcreate.exe submit -t "$(Get-Content token.txt)" $manifestDirectory
$manifestDirectory = "$PWD\manifests\m\Microsoft\Git\$version"
.\wingetcreate.exe submit -t "$(Get-Content token.txt)" $manfiestDirectory
shell: powershell
Loading