fix mistake when there is an incubator and a stable app, the incubator apps should be the one that is tested
This commit is contained in:
6
.github/workflows/apps.test.yaml
vendored
6
.github/workflows/apps.test.yaml
vendored
@@ -98,10 +98,10 @@ jobs:
|
||||
if: ${{ matrix.app != '.gitkee' }}
|
||||
id: prep-lint
|
||||
run: |
|
||||
if test -f "./charts/stable/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="stable"
|
||||
elif test -f "./charts/incubator/${{ matrix.app }}/Chart.yaml"; then
|
||||
if test -f "./charts/incubator/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="incubator"
|
||||
else if test -f "./charts/stable/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="stable"
|
||||
elif test -f "./charts/library/${{ matrix.app }}/Chart.yaml"; then
|
||||
train="library"
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user