ci: fix executors image family for nightly builds (#60865)

This commit is contained in:
Jean-Hadrien Chabran 2024-03-05 18:04:46 +01:00 committed by GitHub
parent 3788feaf52
commit 77058f1d41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -122,7 +122,7 @@ func executorDockerMirrorImageFamilyForConfig(c Config) string {
// This defaults to `-nightly`, and will be `-$MAJOR-$MINOR` for a tagged release
// build.
func executorImageFamilyForConfig(c Config) string {
imageFamily := "sourcegraph-executors-test-nightly"
imageFamily := "sourcegraph-executors-nightly"
if c.RunType.Is(runtype.TaggedRelease) {
ver, err := semver.NewVersion(c.Version)
if err != nil {