From d99c3ec0aa6ebc6bc84f7ee2d3a18f1bb62b5ed5 Mon Sep 17 00:00:00 2001 From: Alessio Tudisco Date: Fri, 20 Mar 2026 15:11:39 +0100 Subject: [PATCH] feat: add winget_updater github action (#12807) Co-authored-by: SoftFever --- .github/workflows/winget_updater.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/winget_updater.yml diff --git a/.github/workflows/winget_updater.yml b/.github/workflows/winget_updater.yml new file mode 100644 index 0000000000..45d029c5a2 --- /dev/null +++ b/.github/workflows/winget_updater.yml @@ -0,0 +1,14 @@ +name: Publish to WinGet +on: + release: + types: [ released ] +jobs: + publish: + runs-on: windows-latest + steps: + - uses: vedantmgoyal9/winget-releaser@main + with: + identifier: SoftFever.OrcaSlicer + version: ${{ github.event.release.tag_name }} + token: ${{ secrets.WINGET_TOKEN }} + installers-regex: '\.exe$' \ No newline at end of file