File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -17,19 +17,20 @@ if [ -n "$CI_COMMIT_TAG" ] || [ -n "$DOTNET_PACKAGE_VERSION" ]; then
17
17
done
18
18
19
19
if [ -n " $CI_COMMIT_SHA " ]; then
20
- echo " Downloading Windows fleet-installer from S3"
21
-
22
20
# Put this in the same place the "build" stage does
23
21
win_target_dir=artifacts-out
24
22
mkdir -p $win_target_dir
25
23
24
+ echo " Downloading Windows Tracer Home from Github"
26
25
curl --location --fail \
27
- --output $win_target_dir /fleet-installer.zip \
28
- " https://dd-windowsfilter.s3.amazonaws.com/builds/tracer/${CI_COMMIT_SHA} /fleet-installer.zip"
26
+ --output $win_target_dir /windows-tracer-home.zip \
27
+ " https://github.com/DataDog/dd-trace-dotnet/releases/download/v${VERSION} /windows-tracer-home.zip"
28
+
29
+ echo " Downloading Windows fleet-installer from S3"
29
30
30
31
curl --location --fail \
31
- --output $win_target_dir /windows-tracer-home .zip \
32
- " https://dd-windowsfilter.s3.amazonaws.com/builds/tracer/${CI_COMMIT_SHA} /windows-tracer-home .zip"
32
+ --output $win_target_dir /fleet-installer .zip \
33
+ " https://dd-windowsfilter.s3.amazonaws.com/builds/tracer/${CI_COMMIT_SHA} /fleet-installer .zip"
33
34
fi
34
35
35
36
echo -n $VERSION > $target_dir /version.txt
You can’t perform that action at this time.
0 commit comments