Setup special trains (#444)

* setup trains for non-free and insecure Apps

* rename dev
This commit is contained in:
Kjeld Schouten-Lebbing
2021-05-09 12:47:53 +02:00
committed by GitHub
parent eea6ef0320
commit 04ac908faa
7 changed files with 44 additions and 68 deletions
+8 -2
View File
@@ -49,7 +49,9 @@ jobs:
changed:
- 'stable/**'
- 'incubator/**'
- 'dev/**'
- 'develop/**'
- 'insecure/**'
- 'non-free/**'
- run: echo '${{ toJson(steps.filter.outputs) }}' > changes.json
- id: reduce
run: |
@@ -76,8 +78,12 @@ jobs:
train="stable"
elif test -f "./incubator/${{ matrix.app }}/Chart.yaml"; then
train="incubator"
elif test -f "./insecure/${{ matrix.app }}/Chart.yaml"; then
train="insecure"
elif test -f "./non-free/${{ matrix.app }}/Chart.yaml"; then
train="non-free"
else
train="dev"
train="develop"
fi
echo ::set-output name=train::${train}