From 403311504406cd57af80e358ee8c40480694bd29 Mon Sep 17 00:00:00 2001 From: Luke R Date: Thu, 2 May 2024 13:07:08 -0700 Subject: [PATCH] Test the filters workflow --- .gitea/workflows/build-and-push.yaml | 30 ++++++++++++++-------------- 1 file changed, 15 insertions(+), 15 deletions(-) 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