From 95d185810394d804094ba06f5b85ea1187fd22fb Mon Sep 17 00:00:00 2001 From: Ryan Caezar Itang Date: Sat, 19 Nov 2022 13:53:14 +0800 Subject: [PATCH 1/2] Add Winget Releaser workflow --- .github/dependabot.yml | 4 ++++ .github/workflows/winget.yml | 15 +++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .github/workflows/winget.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 454c4e976f3..f561013127c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,3 +15,7 @@ updates: - "jjw24" - "taooceros" - "JohnTheGr8" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml new file mode 100644 index 00000000000..fe1b5a5fc5c --- /dev/null +++ b/.github/workflows/winget.yml @@ -0,0 +1,15 @@ +name: Publish to Winget + +on: + release: + types: [released] + +jobs: + publish: + # Action can only be run on windows + runs-on: windows-latest + steps: + - uses: vedantmgoyal2009/winget-releaser@v1 + with: + identifier: Flow-Launcher.Flow-Launcher + token: ${{ secrets.WINGET_TOKEN }} From 0b35f3102e72885b8278a2ce9a788141f7d8985f Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Fri, 30 Dec 2022 23:58:51 +1100 Subject: [PATCH 2/2] update winget action schedule interval to daily --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f561013127c..d9b39eb89e5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -18,4 +18,4 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" + interval: "daily"