Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Release

on: workflow_dispatch

permissions:
contents: read

jobs:
build:
name: Publish a release
Expand Down Expand Up @@ -369,3 +372,18 @@ jobs:
run: |-
gh release upload ${{ needs.build.outputs.new_tag }} dist/vws-macos --clobber
gh release upload ${{ needs.build.outputs.new_tag }} dist/vuforia-cloud-reco-macos --clobber

publish-to-winget:
name: Publish to WinGet
needs: [build, build-windows]
runs-on: windows-latest
permissions:
contents: read

steps:
- uses: vedantmgoyal9/winget-releaser@v2
with:
identifier: VWSPython.vws-cli
version: ${{ needs.build.outputs.new_tag }}
installers-regex: \.exe$
token: ${{ secrets.WINGET_TOKEN }}
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changelog
Next
----

* Add support for installing with winget on Windows.

2026.01.25.1
------------

Expand Down
11 changes: 11 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,17 @@ To use ``vuforia-cloud-reco``:

$ docker run --rm --entrypoint vuforia-cloud-reco "ghcr.io/vws-python/vws-cli" --help

With winget (Windows)
^^^^^^^^^^^^^^^^^^^^^

Requires `winget`_.

.. code-block:: console

$ winget install --id VWSPython.vws-cli --source winget --exact
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There should be two CLIs to install


.. _winget: https://docs.microsoft.com/windows/package-manager/winget/

Pre-built Linux binaries
^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down
11 changes: 11 additions & 0 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,17 @@ To use ``vuforia-cloud-reco``:

$ docker run --rm --entrypoint vuforia-cloud-reco "|docker-image|" --help

With winget (Windows)
~~~~~~~~~~~~~~~~~~~~~

Requires winget_.

.. code-block:: console

$ winget install --id VWSPython.vws-cli --source winget --exact

.. _winget: https://docs.microsoft.com/windows/package-manager/winget/

Pre-built Linux (x86) binaries
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
Loading
Loading