feat(apps): add games train and two gameservers (#1839)

* feat(apps): add games train and two gameservers

* nightly ftw

* move to tccr

* whoops

* another whoops

* some cleanup

* setup impostor ci
This commit is contained in:
Kjeld Schouten-Lebbing
2022-02-04 21:06:27 +01:00
committed by GitHub
parent 43f060fb57
commit 5f50f730b1
17 changed files with 1018 additions and 1 deletions
+6
View File
@@ -34,6 +34,8 @@ jobs:
- 'charts/dependency/**'
- 'charts/library/**'
- 'charts/core/**'
- 'charts/enterprise/**'
- 'charts/games/**'
- run: echo '${{ toJson(steps.filter.outputs) }}' > changes.json
- id: reduce
run: |
@@ -90,6 +92,10 @@ jobs:
train="dependency"
elif test -f "./charts/core/${{ matrix.app }}/Chart.yaml"; then
train="core"
elif test -f "./charts/games/${{ matrix.app }}/Chart.yaml"; then
train="games"
elif test -f "./charts/enterprise/${{ matrix.app }}/Chart.yaml"; then
train="enterprise"
else
train="incubator"
fi
+6
View File
@@ -34,6 +34,8 @@ jobs:
- 'charts/library/**'
- 'charts/dependency/**'
- 'charts/core/**'
- 'charts/enterprise/**'
- 'charts/games/**'
- name: Filter filter-output
run: echo '${{ toJson(steps.filter.outputs) }}' > changes.json
- name: Bump
@@ -55,6 +57,10 @@ jobs:
train="dependency"
elif test -f "./charts/core/${chart}/Chart.yaml"; then
train="core"
elif test -f "./charts/games/${{ matrix.app }}/Chart.yaml"; then
train="games"
elif test -f "./charts/enterprise/${{ matrix.app }}/Chart.yaml"; then
train="enterprise"
else
train="incubator"
fi