Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add run-helm-docs flag to updatecli action #106

Merged
merged 2 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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