Skip to content

Commit

Permalink
Fix directory path in chart publish pipeline. (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
jankaspar authored Jul 21, 2020
1 parent 026e356 commit e5d7ed1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ commands:
- run:
name: Build new packages and index.yaml
command: |
helm package deployment/armada/ -d circleci-charts-test/armada/
helm package deployment/executor -d circleci-charts-test/armada/
helm package deployment/executor-cluster-monitoring/ -d circleci-charts-test/armada/
helm repo index circleci-charts-test/
helm package deployment/armada/ -d charts/armada/
helm package deployment/executor -d charts/armada/
helm package deployment/executor-cluster-monitoring/ -d charts/armada/
helm repo index charts/
- run:
name: Commit and push updated charts
command: |
cd circleci-charts-test
cd charts
git -c user.name='GR OSS' -c [email protected] commit -qam "Pushing new helm charts at version $RELEASE_TAG"
eval "$(ssh-agent -s)"
echo -e "$ARMADA_CHART_UPDATE_KEY" | ssh-add - > /dev/null
Expand Down

0 comments on commit e5d7ed1

Please sign in to comment.