From dafa70bf7275b23d1b88c48c5dd67b5ee9a5c0e8 Mon Sep 17 00:00:00 2001 From: Lessley Dennington Date: Thu, 29 Apr 2021 10:28:44 -0700 Subject: [PATCH] Adding winget workflows --- .github/workflows/release-winget.yaml | 40 +++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/release-winget.yaml diff --git a/.github/workflows/release-winget.yaml b/.github/workflows/release-winget.yaml new file mode 100644 index 00000000000000..f34cdfd0598d8d --- /dev/null +++ b/.github/workflows/release-winget.yaml @@ -0,0 +1,40 @@ +name: "release-winget" +on: + release: + types: [released] + +jobs: + release: + runs-on: ubuntu-latest + steps: + - id: update-winget + name: Update winget repository + uses: mjcheetham/update-winget@v1.2.2 + with: + id: Microsoft.Git + token: ${{ secrets.WINGET_TOKEN }} + releaseAsset: Git-([0-9.vfs]*)\-64-bit.exe + manifestText: | + PackageIdentifier: {{id}} + PackageVersion: {{version}} + PackageName: Microsoft Git + Publisher: Microsoft Corporation + Moniker: microsoft-git + PackageUrl: https://aka.ms/ms-git + Tags: [ microsoft-git ] + License: Copyright (C) Microsoft Corporation + ShortDescription: | + Git distribution to support monorepo scenarios. + Note: This is not Git for Windows. Unless you are working in a monorepo and require + specific Git modifications, please run `winget install git` to start using Git for Windows. + Installers: + - Architecture: x64 + InstallerUrl: {{url}} + InstallerType: inno + InstallerSha256: {{sha256}} + InstallerSwitches: + Custom: /COMPONENTS="AUTOUPDATE" + PackageLocale: en-US + ManifestType: singleton + ManifestVersion: 1.0.0 + alwaysUsePullRequest: true