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

fix: helm chart generation fixes #977

Merged
merged 2 commits into from
Mar 8, 2023
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -315,21 +315,21 @@ jobs:
token: ${{ secrets.KEPTN_BOT_TOKEN }}

- name: Generate helm charts
env:
RELEASE_REGISTRY: ghcr.keptn.sh/keptn
run: make helm-package

- name: Copy charts from klt to helm repo
run: rsync -av --exclude='charts/*.tgz' ./helm/chart/ ./helm-charts-repository/charts/keptn-lifecycle-toolkit/

- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
env:
GIT_SHA: ${{ needs.prepare_ci_run.outputs.GIT_SHA }}
with:
token: ${{ secrets.KEPTN_BOT_TOKEN }}
path: ./helm-charts-repository
commit-message: "Update KLT chart"
commit-message: "feat: update KLT chart"
signoff: true
branch: klt-chart-update-${{ env.GIT_SHA }}
branch: klt-chart-update-${{ needs.prepare_ci_run.outputs.BRANCH_SLUG }}
delete-branch: true
base: main
title: "Update KLT Helm chart"
Expand Down