diff --git a/.github/scripts/macos/increment-version.ps1 b/.github/scripts/macos/increment-version.ps1 index 5d1b4016ea..40e2a236ad 100644 --- a/.github/scripts/macos/increment-version.ps1 +++ b/.github/scripts/macos/increment-version.ps1 @@ -1,5 +1,7 @@ $rootPath = $env:GITHUB_WORKSPACE; +$packagePath = "$rootPath\package.json"; $buildNumber = 100 + [int]$env:GITHUB_RUN_NUMBER; -# See https://www.electron.build/configuration/configuration#configuration Write-Output "Setting build number to $buildNumber"; -Write-Output "::set-env name=BUILD_NUMBER::$buildNumber"; +$package = Get-Content -Raw -Path $packagePath | ConvertFrom-Json; +$package.build | Add-Member -MemberType NoteProperty -Name buildVersion -Value "$buildNumber"; +$package | ConvertTo-Json -Depth 32 | Set-Content $packagePath;