1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

disabling jobs that already successfully ran. Fixing the MacOS deploy

This commit is contained in:
Joseph Flinn
2021-01-22 20:53:05 +00:00
parent 01c236c86e
commit de333ef82c
2 changed files with 4 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
$rootPath = $env:GITHUB_WORKSPACE;
$packagePath = "$rootPath\package.json";
$buildNumber = 100 + [int]$env:GITHUB_RUN_NUMBER;
$buildNumber = 500 + [int]$env:GITHUB_RUN_NUMBER;
Write-Output "Setting build number to $buildNumber";
Write-Output "BUILD_NUMBER=$buildNumber" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append;
$package = Get-Content -Raw -Path $packagePath | ConvertFrom-Json;