From dbb281643ea42563684049c6feb5c677145a8d8c Mon Sep 17 00:00:00 2001 From: Begula <83997633+vedantmgoyal2009@users.noreply.github.com> Date: Tue, 12 Apr 2022 22:18:05 +0530 Subject: [PATCH 1/2] Publish to WinGet GitHub Action (#137) * Create winget.yml * Update secret name Co-authored-by: CodeDoctor <20452814+CodeDoctorDE@users.noreply.github.com> --- .github/workflows/winget.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/winget.yml diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml new file mode 100644 index 000000000000..9ea7e018789b --- /dev/null +++ b/.github/workflows/winget.yml @@ -0,0 +1,12 @@ +name: Publish to WinGet +on: + release: + types: [published] +jobs: + publish: + runs-on: windows-latest + steps: + - uses: vedantmgoyal2009/vedantmgoyal2009/winget-pkgs-automation/releaser-action@v1.0.0 + with: + identifier: LinwoodCloud.Butterfly + token: ${{ secrets.CI_PAT }} From 5187d3c9df0af2306059b083887615e22153374e Mon Sep 17 00:00:00 2001 From: Begula <83997633+vedantmgoyal2009@users.noreply.github.com> Date: Tue, 12 Apr 2022 22:57:34 +0530 Subject: [PATCH 2/2] Update winget.yml (#138) --- .github/workflows/winget.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml index 9ea7e018789b..a6a273b139bc 100644 --- a/.github/workflows/winget.yml +++ b/.github/workflows/winget.yml @@ -1,7 +1,7 @@ name: Publish to WinGet on: release: - types: [published] + types: [released] jobs: publish: runs-on: windows-latest