Vedant 3 anni fa
parent
commit
d6ac8c7bdb
1 ha cambiato i file con 13 aggiunte e 0 eliminazioni
  1. 13 0
      .github/workflows/winget.yml

+ 13 - 0
.github/workflows/winget.yml

@@ -0,0 +1,13 @@
+name: Publish to WinGet
+on:
+  release:
+    types: [released]
+jobs:
+  publish:
+    runs-on: windows-latest # action can only be run on windows
+    steps:
+      - uses: vedantmgoyal2009/winget-releaser@latest
+        with:
+          identifier: alexx2000.DoubleCommander
+          installers-regex: '.(exe|msi)$'
+          token: ${{ secrets.WINGET_TOKEN }}