Skip to content

Commit

Permalink
sync chart with helm-chart repo (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanMelnyk113 authored Dec 15, 2023
1 parent 8edca7f commit c57f9a1
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ jobs:
ls -l "${CR_PACKAGE_PATH}"
git status
- name: Make helm charts github release
uses: softprops/action-gh-release@v1
with:
Expand Down Expand Up @@ -192,3 +193,15 @@ jobs:
git add ${CHART_PATH}/Chart.yaml
git commit -m "[Release] Update Chart.yaml"
git push
- name: Sync chart with helm-charts github
run: |
cd helm-charts
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
git checkout main
cp -r ${CHART_PATH} ./charts/egressd
git add charts/egressd
git commit -m "[egressd] Update egressd chart to ${{env.RELEASE_TAG}}"
git push

0 comments on commit c57f9a1

Please sign in to comment.