Cleanup github actions

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-09-02 19:00:23 -04:00
parent 7e03c13c0c
commit 2217dcf7f1
3 changed files with 62 additions and 24 deletions

View file

@ -42,7 +42,8 @@ jobs:
name: Build
runs-on: ubuntu-latest
needs: changes
if: ${{ needs.changes.outputs.go == 'true' }}
if: |
(needs.changes.outputs.go == 'true')
steps:
@ -100,7 +101,8 @@ jobs:
runs-on: ubuntu-latest
needs:
- changes
if: ${{ needs.changes.outputs.charts == 'true' }}
if: |
(needs.changes.outputs.charts == 'true')
steps:
@ -137,7 +139,9 @@ jobs:
needs:
- changes
- build
if: ${{ needs.changes.outputs.go == 'true' }}
if: |
(needs.changes.outputs.go == 'true')
strategy:
matrix:
k8s: [v1.17.5, v1.18.8, v1.19.0]