-
So for example, let us say an obscure package that I today need which results in me adding support for it via Winget. Now this package is fairly good when it comes to releases and just like Winget they use GitHub Releases and mark their latest binaries as latest. In fact the package is so great they even name their files in a simple manner with [https://github.com]/<owner>/<repo>/releases/<version>/app.exe? So do I need to keep an eye whenever the package updates and then update the manifest? Or does the manifest support auto-updation? Kinda like Scoop |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
We have a feature in the backlog to look at GitHub releases as a way to trigger an automatic update, but it's not implemented. In this case, someone would need to maintain the manifests. microsoft/winget-pkgs#500 I believe @isaacrlevin has a working example of a GitHub action to do such a thing. |
Beta Was this translation helpful? Give feedback.
-
I have a process that worked with the old schema version, I still need to update to adapt to the new schema. But here is the part of my GitHub Action that updates the package in winget. |
Beta Was this translation helpful? Give feedback.
We have a feature in the backlog to look at GitHub releases as a way to trigger an automatic update, but it's not implemented. In this case, someone would need to maintain the manifests.
microsoft/winget-pkgs#500
microsoft/winget-pkgs#1515
I believe @isaacrlevin has a working example of a GitHub action to do such a thing.