From 993ca05cd7741fd4e48fe6b8a3b28f102174f4b6 Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Thu, 27 Oct 2022 17:56:45 +0100 Subject: [PATCH] Fix artifact lookup for `ubuntu-20.04` --- .github/workflows/debug-artifacts.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/debug-artifacts.yml b/.github/workflows/debug-artifacts.yml index 145ce6f97..bef01c453 100644 --- a/.github/workflows/debug-artifacts.yml +++ b/.github/workflows/debug-artifacts.yml @@ -85,7 +85,9 @@ jobs: LANGUAGES="cpp csharp go java javascript python" for version in $VERSIONS; do if [[ "$version" =~ stable-(20210308|20210319|20210809) ]]; then - OPERATING_SYSTEMS="ubuntu-20.04 macos-latest" + # Note the absence of the period in "ubuntu-2004": this is present in the image name + # but not the artifact name + OPERATING_SYSTEMS="ubuntu-2004 macos-latest" else OPERATING_SYSTEMS="ubuntu-latest macos-latest" fi