Skip to content

Commit

Permalink
Merge pull request #14 from progress/kiranb-main
Browse files Browse the repository at this point in the history
Try an array syntax for charts_dir
  • Loading branch information
kiranbabuneela authored Apr 15, 2024
2 parents 1ca0e70 + e28b4d5 commit ef0d8a9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
permissions:
contents: write
runs-on: ubuntu-latest
strategy:
matrix:
project:
- './charts/BasicDeployment'
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -30,8 +34,8 @@ jobs:

- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: './charts/BasicDeployment'
with:
charts_dir: ${{ matrix.project }}
env:
GITHUB_TOKEN: ${{ secrets.SECRETS_GITHUB_TOKEN }}
CR_TOKEN: ${{ secrets.SECRETS_GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion charts/BasicDeployment/hdp-server-deploy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.2
version: 0.1.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down

0 comments on commit ef0d8a9

Please sign in to comment.