diff --git a/.gitea/workflows/build-and-push.yaml b/.gitea/workflows/build-and-push.yaml index daea1c4b..7636c357 100755 --- a/.gitea/workflows/build-and-push.yaml +++ b/.gitea/workflows/build-and-push.yaml @@ -4,21 +4,21 @@ on: [push] jobs: changes: - runs-on: ubuntu-latest - outputs: - python_files: ${{ steps.filter.outputs.python_files }} - helm_files: ${{ steps.filter.outputs.helm }} - steps: - - name: Check out repository code - uses: actions/checkout@v4 - - uses: dorny/paths-filter@v3 - id: filter - with: - filters: | - python_files: - - 'app/**' - helm: - - 'helm/**' + runs-on: ubuntu-latest + outputs: + python_files: ${{ steps.filter.outputs.python_files }} + helm_files: ${{ steps.filter.outputs.helm }} + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - uses: dorny/paths-filter@v3 + id: filter + with: + filters: | + python_files: + - 'app/**' + helm: + - 'helm/**' Lint-Python: runs-on: ubuntu-latest needs: changes