commit a97a4e0cb2785f6e63566ba1270caa48d56a3f49 parent 3aa16927f1e0bf988fd74a9114ab4c85efc94686 Author: sitiom <sitiom@proton.me> Date: Fri, 3 Mar 2023 08:32:10 +0800 ci: add winget releaser workflow Diffstat:
| A | .github/workflows/winget.yml | | | 14 | ++++++++++++++ |
1 file changed, 14 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml @@ -0,0 +1,14 @@ +name: Publish to Winget +on: + release: + types: [released] + +jobs: + publish: + runs-on: windows-latest # Action can only run on Windows + steps: + - uses: vedantmgoyal2009/winget-releaser@v2 + with: + identifier: JackMordaunt.icnsify + installers-regex: '_windows_\w+\.zip$' + token: ${{ secrets.WINGET_TOKEN }}