From 383b7ef4f8ce60dfbc278e29ecb3f5ab573fef76 Mon Sep 17 00:00:00 2001 From: Vedant <83997633+vedantmgoyal2009@users.noreply.github.com> Date: Tue, 9 Aug 2022 15:36:38 +0530 Subject: [PATCH] feat: publish to winget (#1174) --- .github/workflows/windows.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index c29d0c5..31add9f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -96,3 +96,11 @@ jobs: GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }} GITHUB_USERNAME: ${{ github.repository_owner }} + - if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes' + name: Release to WinGet + uses: vedantmgoyal2009/winget-releaser@latest + with: + identifier: VSCodium.VSCodium + release-tag: env.MS_TAG + installers-regex: '\.exe$' # only .exe files + token: ${{ secrets.STRONGER_GITHUB_TOKEN }}