Skip to content
Draft
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
3 changes: 3 additions & 0 deletions .github/workflows/dev-be-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ jobs:
run: |
make build-cli-debug

- name: Clean Go cache
run: make clean-go-cache

- name: Deploy Everest to K3D test cluster
timeout-minutes: 10
run: |
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,9 @@ cert: ## Create dev TLS certificates.
mkcert -install
mkcert -cert-file=dev-cert.pem -key-file=dev-key.pem everest everest.localhost 127.0.0.1

clean-go-cache:
go clean -modcache

##@ GitHub PR

CHART_BRANCH ?= main
Expand Down
Loading