We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfcea60 commit c3d1c81Copy full SHA for c3d1c81
.github/workflows/ci_cd.yml
@@ -493,6 +493,10 @@ jobs:
493
$env:PREVIOUS_PATCH_VERSION_NUMBER=$env:VERSION.substring($env:VERSION.Length - 1)
494
$env:PREVIOUS_PATCH_VERSION_NUMBER=[int]$env:PREVIOUS_PATCH_VERSION_NUMBER - 1
495
$env:PREVIOUS_VERSION=$env:PREVIOUS_VERSION + $env:PREVIOUS_PATCH_VERSION_NUMBER
496
+ # Fetch the LFS files from the previous version
497
+ git lfs fetch origin --include="$env:PREVIOUS_VERSION/*"
498
+ git lfs checkout $env:PREVIOUS_VERSION
499
+ # Copy the binaries from the previous version
500
cp ./$env:PREVIOUS_VERSION/windows-binaries.zip windows-binaries.zip
501
cp ./$env:PREVIOUS_VERSION/linux-binaries.zip linux-binaries.zip
502
0 commit comments