Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
emosbaugh committed Jul 25, 2024
1 parent 2863ea5 commit feab9ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -211,12 +211,8 @@ jobs:
done <images.txt
if [ $missing_images -gt 0 ]; then
echo "Found $missing_images missing images"
fi
exit 0 # TODO: change to exit 1 when all images are done
fi
release-app:
name: Create App Releases
Expand Down
3 changes: 3 additions & 0 deletions cmd/buildtools/metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package main
import (
"encoding/json"
"fmt"
"log"
"os"
"sort"

Expand Down Expand Up @@ -106,10 +107,12 @@ func extractImagesFromHelmExtensions(repos []embeddedclusterv1beta1.Repository,

var images []string
for _, ext := range charts {
log.Printf("Extracting images from chart %s", ext.Name)
ims, err := extractImagesFromChart(hcli, ext)
if err != nil {
return nil, fmt.Errorf("extract images from chart %s: %w", ext.Name, err)
}
log.Printf("Found %d images in chart %s", len(ims), ext.Name)
images = append(images, ims...)
}
images = helpers.UniqueStringSlice(images)
Expand Down

0 comments on commit feab9ed

Please sign in to comment.