Skip to content

fix: add resources in devtron-backup chart #313

fix: add resources in devtron-backup chart

fix: add resources in devtron-backup chart #313

name: Helm Chart Linting
on:
pull_request:
paths:
- 'charts/**'
jobs:
helm-lint_and_helm-template:
runs-on: ubuntu-latest
outputs:
charts: ${{ steps.filter.outputs.charts }}
values: ${{ steps.values.outputs.values }}
steps:
- uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
id: filter
with:
list-files: shell
filters: |
charts:
- added|modified: 'charts/**/templates/**'
- run: echo ${{ steps.filter.outputs.charts }}
- uses: actions/setup-python@v2
- uses: jannekem/run-python-script-action@v1
id: python
with:
script: |
string='${{ steps.filter.outputs.charts_files }}'
location=string.split("templates",1)[0]
print(location)
set_output("chart_path",location)
- run: echo ${{ steps.python.outputs.chart_path }}
- name: Print errors
if: steps.script.outputs.error == 'true'
run: |
printenv "SCRIPT_STDOUT"
printenv "SCRIPT_STDERR"
- name: Adding dependency
run: cd ./${{ steps.python.outputs.chart_path }} && helm dependency build
- name: helm-check
uses: igabaydulin/[email protected]
env:
CHART_LOCATION: ./${{ steps.python.outputs.chart_path }}
CHART_VALUES: ./${{ steps.python.outputs.chart_path }}values.yaml