From dac73cb859ccf8e039056e4f8bf0f6f09771bd20 Mon Sep 17 00:00:00 2001 From: Matthias Kuhn Date: Tue, 13 Feb 2024 18:57:10 +0100 Subject: [PATCH] Check versions --- .github/workflows/static.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 7a02157..2a4f3ac 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -25,3 +25,11 @@ jobs: - name: Format vcpkg.json run: | vcpkg format-manifest --all $(find . -name "vcpkg.json") + + - name: Check versions + run: | + for dir in ports/* ; do + vcpkg x-add-version ${dir##ports/} --overlay-ports=./ports \ + --x-builtin-registry-versions-dir=./versions/ \ + --x-builtin-ports-root=./ports + done