From 46f0328807d68734ccf8844b77113ef20d059f7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Mon, 16 Feb 2026 07:01:43 +0100 Subject: [PATCH] version info fix --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a2998a92..9d8f54e85 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -186,12 +186,12 @@ jobs: run: | $VERSION_PROP_FILE = "version.properties" echo "">$VERSION_PROP_FILE - echo "major=${{ needs.compute-version.outputs.verMajor }}">>$VERSION_PROP_FILE - echo "minor=${{ needs.compute-version.outputs.verMinor }}">>$VERSION_PROP_FILE - echo "release=${{ needs.compute-version.outputs.verRelease }}">>$VERSION_PROP_FILE - echo "build=${{ needs.compute-version.outputs.verBuild }}">>$VERSION_PROP_FILE - echo "revision=${{ needs.compute-version.outputs.verRevision }}">>$VERSION_PROP_FILE - echo "debug=${{ needs.compute-version.outputs.verDebug }}">>$VERSION_PROP_FILE + echo "major=${{ steps.vars.outputs.verMajor }}">>$VERSION_PROP_FILE + echo "minor=${{ steps.vars.outputs.verMinor }}">>$VERSION_PROP_FILE + echo "release=${{ steps.vars.outputs.verRelease }}">>$VERSION_PROP_FILE + echo "build=${{ steps.vars.outputs.verBuild }}">>$VERSION_PROP_FILE + echo "revision=${{ steps.vars.outputs.verRevision }}">>$VERSION_PROP_FILE + echo "debug=${{ steps.vars.outputs.verDebug }}">>$VERSION_PROP_FILE - name: Upload version.properties artifact uses: actions/upload-artifact@v4