You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @modem7, I'm aware of the Windows "issue". The problem is that I cannot ship the installer I was using before for license issues, so I need to check if I can get a new one.
Installing all Qt dependencies manually is quite tedious on Windows so I'd prefer to avoid that pain to the user.
Let's see what I can do, and sorry for the trouble! :)
Releasing GitQlient as a winget-pkgs package would enable you to specify Qt as a dependency - eg the way this is done here for dependencies of UnigetUI.
# installer.yaml# Created with WinGet Releaser v2 using Komac v1.11.0# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.jsonPackageIdentifier: MartiCliment.UniGetUIPackageVersion: 3.1.3# ...Dependencies:
PackageDependencies:
- PackageIdentifier: Microsoft.VCRedist.2015+.x64MinimumVersion: 14.40.33816.0# ...Installers:
- Architecture: x64InstallerUrl: https://github.com/marticliment/UniGetUI/releases/download/3.1.3/UniGetUI.Installer.exeInstallerSha256: 58AE121CD325B7F5AEF6ED07E21D72A89BA0E7FF6ADDB2FB339A69DCFEFAD6B4# ...
If this is helpful, I can publish the initial manifest release for 1.6.0 using Komac, then you could define a github-action workflow based on winget-releaser-v2 - again this example from UnigetUI is useful.
name: Publish stable releases to WinGeton:
release:
types: [released]workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-lateststeps:
- uses: vedantmgoyal2009/winget-releaser@v2with:
identifier: francescmm.GitQlient # use your identifierversion: ${{ github.event.release.tag_name }}token: ${{ secrets.WINGET_TOKEN }} # and tokeninstallers-regex: '\.exe$'# Only .exe files
Describe the bug
Windows installer not available for 1.6.2.
Last available is 1.6.0. Possible workflow issue?
The text was updated successfully, but these errors were encountered: