Skip to content

Commit

Permalink
feat: test improved helm actions
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverbaehler committed Oct 15, 2023
1 parent 74afd2b commit b5bed46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/helm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: helm lint ./charts/capsule
- name: Setup Chart Linting
id: lint
uses: helm/chart-testing-action@88cc7026481da7468e34a614b8ca4f0da42c063c # v3.9.0
uses: helm/chart-testing-action@e8788873172cb653a90ca2e819d79d65a66d4e76 # v2.4.0
- name: Run chart-testing (list-changed)
id: list-changed
run: |
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ GIT_MODIFIED_2 ?= $(shell git diff --quiet && echo "" || echo ".dirty")
GIT_MODIFIED ?= $(shell echo "$(GIT_MODIFIED_1)$(GIT_MODIFIED_2)")
GIT_REPO ?= $(shell git config --get remote.origin.url)
BUILD_DATE ?= $(shell git log -1 --format="%at" | xargs -I{} date -r {} +%Y-%m-%dT%H:%M:%S)
IMG ?= $(REPOSITORY):$(VERSION)
CAPSULE_IMG ?= $(REGISTRY)/$(REPOSITORY)
IMG_BASE ?= $(REPOSITORY)/capsule
IMG ?= $(IMG_BASE):$(VERSION)
CAPSULE_IMG ?= $(REGISTRY)/$(IMG_BASE)


# Default bundle image tag
Expand Down

0 comments on commit b5bed46

Please sign in to comment.