Compare commits
3 Commits
0e5e6a380a
...
178eb3c308
Author | SHA1 | Date | |
---|---|---|---|
178eb3c308 | |||
97c50966f1 | |||
8fc97ec058 |
@ -119,6 +119,12 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
|
curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
|
||||||
|
|
||||||
|
- name: Fetch Dependencies
|
||||||
|
run: |
|
||||||
|
cd helm && \
|
||||||
|
helm repo add hull https://vidispine.github.io/hull && \
|
||||||
|
helm dep build
|
||||||
|
|
||||||
- name: Package Chart
|
- name: Package Chart
|
||||||
run: |
|
run: |
|
||||||
helm package --app-version ${VERSION} ${CHART_DIR}
|
helm package --app-version ${VERSION} ${CHART_DIR}
|
||||||
|
7
Makefile
7
Makefile
@ -79,6 +79,9 @@ rename:
|
|||||||
@sed -i "s|otelServiceName: .*|otelServiceName: $(APP)|g" helm/values.yaml
|
@sed -i "s|otelServiceName: .*|otelServiceName: $(APP)|g" helm/values.yaml
|
||||||
@sed -i "s|app=.*|app=$(APP)|g" helm/values.yaml
|
@sed -i "s|app=.*|app=$(APP)|g" helm/values.yaml
|
||||||
@sed -i "s|$(CMD_NAME)|$(APP)|g" README.md
|
@sed -i "s|$(CMD_NAME)|$(APP)|g" README.md
|
||||||
|
@sed -i "s|$(CMD_NAME)|$(APP)|g" .gitea/workflows/ci.yml
|
||||||
|
@sed -i "s|$(GIT_REPO)|$(NAME)|g" .gitea/workflows/ci.yml
|
||||||
|
@rm contrib/$(CMD_NAME).swagger.json
|
||||||
@find . -type f -a \
|
@find . -type f -a \
|
||||||
\( -name '*.go' -o -name 'go.mod' \
|
\( -name '*.go' -o -name 'go.mod' \
|
||||||
-o -name 'go.sum' -o -name '*.proto' \
|
-o -name 'go.sum' -o -name '*.proto' \
|
||||||
@ -87,4 +90,6 @@ rename:
|
|||||||
\) \
|
\) \
|
||||||
-not -path './.git' -not -path './.git/*' \
|
-not -path './.git' -not -path './.git/*' \
|
||||||
-exec sed -i "s|$(GIT_REPO)|$(NAME)|g" {} +
|
-exec sed -i "s|$(GIT_REPO)|$(NAME)|g" {} +
|
||||||
@echo "Project renamed to $(NAME)"
|
@echo "\n* Project renamed to $(NAME)"
|
||||||
|
@echo "* NOTE: You will have to update .gitea/workflows/ci.yml"
|
||||||
|
@echo "* NOTE: You will have to run buf generate"
|
||||||
|
Reference in New Issue
Block a user