Skip to content

Commit

Permalink
fix(release): do not delete testdata from git history in release work…
Browse files Browse the repository at this point in the history
…flow
  • Loading branch information
lucasrod16 committed May 24, 2024
1 parent 1dcc140 commit 67bc115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ destroy: ## Run `zarf destroy` on the current cluster
rm -fr build

delete-packages: ## Delete all Zarf package tarballs in the project recursively
find . -type f -name 'zarf-package-*' -delete
find . -type f -name 'zarf-package-*' -not -path '*/testdata/*' -print -delete

# Note: the path to the main.go file is not used due to https://github.com/golang/go/issues/51831#issuecomment-1074188363
.PHONY: build
Expand Down

0 comments on commit 67bc115

Please sign in to comment.