diff --git a/pkg/recipe/recipe.go b/pkg/recipe/recipe.go index 4e1df32a..b11c5efd 100644 --- a/pkg/recipe/recipe.go +++ b/pkg/recipe/recipe.go @@ -616,6 +616,11 @@ func EnsureUpToDate(recipeName string) error { return err } + fetchOpts := &git.FetchOptions{ + Tags: git.AllTags, + } + repo.Fetch(fetchOpts) + opts := &git.PullOptions{ Force: true, ReferenceName: branch,