Skip to content

Commit 993ca05

Browse files
committed
Fix artifact lookup for ubuntu-20.04
1 parent a312004 commit 993ca05

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/debug-artifacts.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ jobs:
8585
LANGUAGES="cpp csharp go java javascript python"
8686
for version in $VERSIONS; do
8787
if [[ "$version" =~ stable-(20210308|20210319|20210809) ]]; then
88-
OPERATING_SYSTEMS="ubuntu-20.04 macos-latest"
88+
# Note the absence of the period in "ubuntu-2004": this is present in the image name
89+
# but not the artifact name
90+
OPERATING_SYSTEMS="ubuntu-2004 macos-latest"
8991
else
9092
OPERATING_SYSTEMS="ubuntu-latest macos-latest"
9193
fi

0 commit comments

Comments
 (0)