diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-05-06 10:14:04 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-05-06 19:24:10 -0400 |
commit | 6e69964d94392b5398a33fa65f3730805c6a7f93 (patch) | |
tree | 9439a8c22ef6a2137a35ba1f2fb2328f2890f489 /.gitlab-ci.yml | |
parent | 4de887e28e18eb9876ec56e37a0f206521e62bf1 (diff) | |
download | haskell-6e69964d94392b5398a33fa65f3730805c6a7f93.tar.gz |
Fix name of windows release bindist in doc-tarball job
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 957259619c..ae8cf7b3d8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -488,7 +488,7 @@ doc-tarball: || mv "ghc-x86_64-linux-deb10-perf.tar.xz" "$LINUX_BINDIST" \ || true mv "ghc-x86_64-windows-validate.tar.xz" "$WINDOWS_BINDIST" \ - || mv "ghc-x86-windows-perf.tar.xz" "$WINDOWS_BINDIST" \ + || mv "ghc-x86_64-windows-perf.tar.xz" "$WINDOWS_BINDIST" \ || true if [ ! -f "$LINUX_BINDIST" ]; then echo "Error: $LINUX_BINDIST does not exist. Did the Debian 9 job fail?" |