Cleanup github actions
This commit is contained in:
parent
7e03c13c0c
commit
2217dcf7f1
3 changed files with 62 additions and 24 deletions
10
.github/workflows/ci.yaml
vendored
10
.github/workflows/ci.yaml
vendored
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue