Skip to content

Commit

Permalink
Add run-helm-docs flag to updatecli action (#106)
Browse files Browse the repository at this point in the history
* add helm docs & remove version filter

* update makefile to handle dep updates

---------

Co-authored-by: jamie zieziula <[email protected]>
  • Loading branch information
jamiezieziula and jamie zieziula authored Oct 8, 2024
1 parent 521a974 commit 21ad55d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/updatecli/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ sources:
name: common
versionFilter:
kind: semver
pattern: 2.x.x
sourceid: common
conditions: {}
targets:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/updatecli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ jobs:
uses: prefecthq/actions-updatecli-apply@main
with:
manifest-path: .github/updatecli/manifest.yaml
run-helm-docs: true
run-type: minor
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,13 @@ vet: ## Run go vet against code.
go vet ./...

.PHONY: helmbuild
helmbuild: ## Build Helm dependencies
helmbuild: update-chart-deps ## Build Helm dependencies
helm repo add bitnami https://charts.bitnami.com/bitnami
helm dependency build $(CHART_PATH)

.PHONY: update-chart-deps
update-chart-deps:
helm dependency update $(CHART_PATH)

GINKGO_OPTIONS ?= -v --skip-package test/e2e -coverprofile cover.out -coverpkg ./api/v1/...,./internal/... -r

Expand Down

0 comments on commit 21ad55d

Please sign in to comment.