forked from git-for-windows/git
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
41 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,41 @@ | ||
name: "release-winget" | ||
on: | ||
release: | ||
types: [released] | ||
|
||
workflow_dispatch: | ||
inputs: | ||
release: | ||
description: 'Release Id' | ||
required: true | ||
default: 'latest' | ||
|
||
jobs: | ||
release: | ||
runs-on: windows-latest | ||
environment: release | ||
steps: | ||
- name: Publish manifest with winget-create | ||
run: | | ||
# Get correct release asset | ||
$github = Get-Content '${{ github.event_path }}' | ConvertFrom-Json | ||
$asset = $github.release.assets | Where-Object -Property name -match '64-bit.exe$' | ||
# Remove 'v' and 'vfs' from the version | ||
$github.release.tag_name -match '\d.*' | ||
$version = $Matches[0] -replace ".vfs","" | ||
# Download wingetcreate and create manifests | ||
Invoke-WebRequest https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe | ||
.\wingetcreate.exe update Microsoft.Git -u $asset.browser_download_url -v $version -o manifests | ||
# Manually substitute the name of the default branch in the License | ||
# and Copyright URLs since the tooling cannot do that for us. | ||
$shortenedVersion = $version -replace ".{4}$" | ||
$manifestPath = dir -Path ./manifests -Filter Microsoft.Git.locale.en-US.yaml -Recurse | %{$_.FullName} | ||
sed -i "s/vfs-[.0-9]*/vfs-$shortenedVersion/g" "$manifestPath" | ||
# Submit manifests | ||
$manifestDirectory = Split-Path "$manifestPath" | ||
.\wingetcreate.exe submit -t "${{ secrets.WINGET_TOKEN }}" $manifestDirectory | ||
shell: powershell |