Skip to content

Commit

Permalink
Update .push-helm-chart.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
barrfalk committed Jan 9, 2024
1 parent a0f614d commit 5f5643f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/.push-helm-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,14 @@ jobs:
BRANCH_NAME="update-helm-chart-${{ inputs.tag }}"
git checkout -b $BRANCH_NAME
- name: Copy Helm Chart
- name: Copy folder from source to target
run: |
cp -r ./charts/* target-repo/helm-chart/
if [ -d "source-repo/charts" ]; then
mkdir -p target-repo/helm-chart
cp -r source-repo/charts/* target-repo/helm-chart/
else
echo "Directory 'charts' does not exist in source repository"
exit 1
- name: Setup Git Config so that we can commit with a name
run: |
Expand Down

0 comments on commit 5f5643f

Please sign in to comment.