Skip to content

Commit

Permalink
Fix (ci): Add separate BUILD_PAUSE env var in .state to pause bui…
Browse files Browse the repository at this point in the history
…lds instead of using `BUILD_STATUS` (#184)
  • Loading branch information
leojonathanoh authored Dec 10, 2023
1 parent 3f151be commit fe09308
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Generate-GitBranches.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ STEAM_LOGIN=
@"
BUILD_STATUS=$( if ($kv.Contains('BUILD_STATUS')) { $kv['BUILD_STATUS'] } else { '' } )
BUILD_EPOCH=$( if ($kv.Contains('BUILD_EPOCH')) { $kv['BUILD_EPOCH'] } else { '0' } )
BUILD_PAUSE=$( if ($kv.Contains('BUILD_PAUSE')) { $kv['BUILD_PAUSE'] } else { '' } )
BASE_SIZE=$( if ($kv.Contains('BASE_SIZE')) { $kv['BASE_SIZE'] } else { '0' } )
LAYERED_SIZE=$( if ($kv.Contains('LAYERED_SIZE')) { $kv['LAYERED_SIZE'] } else { '0' } )
"@ | Out-File .state -Encoding utf8 -Force
Expand Down

0 comments on commit fe09308

Please sign in to comment.