diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1b1e1fa..e359c67 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -502,6 +502,7 @@ jobs: cat > version.json << EOF { "latest_version": "${{ steps.version.outputs.VERSION_NUM }}", + "version": "${{ steps.version.outputs.VERSION_NUM }}", "releaseDate": "${{ steps.version.outputs.BUILD_DATE_ISO }}", "patch": ${{ steps.version.outputs.PATCH_NUMBER }}, "releaseName": "", diff --git a/.github/workflows/update-version-json.yml b/.github/workflows/update-version-json.yml index 04ac8ac..d92bd95 100644 --- a/.github/workflows/update-version-json.yml +++ b/.github/workflows/update-version-json.yml @@ -141,6 +141,7 @@ jobs: cat > version.json << EOF { "latest_version": "${{ steps.version.outputs.VERSION_FULL }}", + "version": "${{ steps.version.outputs.VERSION_FULL }}", "releaseDate": "${{ steps.version.outputs.BUILD_DATE_ISO }}", "patch": ${{ steps.version.outputs.PATCH_NUMBER }}, "releaseName": ${{ steps.release_info.outputs.RELEASE_NAME }},