-
Notifications
You must be signed in to change notification settings - Fork 767
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1940 from tgauth/add-release-to-winget
Add Release to WinGet GitHub Workflow
- Loading branch information
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Copyright (c) Microsoft Corporation. | ||
# Licensed under the BSD license. | ||
|
||
name: Release to WinGet | ||
|
||
on: | ||
workflow_dispatch: | ||
release: | ||
types: [created] | ||
|
||
defaults: | ||
run: | ||
shell: pwsh | ||
|
||
env: | ||
PACKAGE_URLS: "" | ||
|
||
jobs: | ||
release-to-winget: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- run: | | ||
$repo = "powershell/win32-openssh" | ||
$releases = "https://api.github.com/repos/$repo/releases" | ||
$releaseInfo = (Invoke-WebRequest $releases | ConvertFrom-Json)[0] | ||
$tag = $releaseInfo.tag_name | ||
forEach ($filename in $releaseInfo.assets.name) { | ||
if ($filename.split(".")[-1] -contains "msi") { | ||
if ($filename.split("-")[1] -contains "Win32") { | ||
$msi_x86 = "https://github.com/$repo/releases/download/$tag/$filename" | ||
} | ||
if ($filename.split("-")[1] -contains "Win64") { | ||
$msi_x64 = "https://github.com/$repo/releases/download/$tag/$filename" | ||
} | ||
} | ||
} | ||
echo "URL_X86=$msi_x86" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append | ||
echo "URL_X64=$msi_x64" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append | ||
name: Get Release URLs | ||
- run: | | ||
# Download and install C++ Runtime framework package. | ||
Import-Module Appx -UseWindowsPowerShell | ||
iwr https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx -OutFile vcLibsBundle.appx | ||
Add-AppxPackage vcLibsBundle.appx | ||
# Download Winget-Create msixbundle, install, and execute update. | ||
iwr https://aka.ms/wingetcreate/latest/msixbundle -OutFile winGetBundle.appx | ||
Add-AppxPackage winGetBundle.appx | ||
name: Download WinGet Requirements | ||
- run: | | ||
# wingetcreate update Microsoft.OpenSSH.Beta -u @($env:URL_X86, $env:URL_X64) -o $env:GITHUB_WORKSPACE | ||
wingetcreate update Microsoft.OpenSSH.Beta -u @($env:URL_X86, $env:URL_X64) -t ${{ secrets.WINGETTOKEN }} --submit | ||
name: WinGet Update |