From e98d6a35c8c49c1906b8f7f43db5bf34da095104 Mon Sep 17 00:00:00 2001 From: Luke R Date: Thu, 2 May 2024 12:28:27 -0700 Subject: [PATCH] check if python was changed --- .gitea/workflows/build-and-push.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build-and-push.yaml b/.gitea/workflows/build-and-push.yaml index 2d82769d..748807df 100755 --- a/.gitea/workflows/build-and-push.yaml +++ b/.gitea/workflows/build-and-push.yaml @@ -7,18 +7,16 @@ jobs: runs-on: ubuntu-latest steps: - run: echo "This is run ${{ gitea.run_id }}" + # - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + # - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 - uses: dorny/paths-filter@v3 id: filter with: filters: | python_files: - 'app/**/*.py' - # run only if python file were changed - # - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - # - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - - name: Check out repository code - uses: actions/checkout@v4 - if: steps.filter.outputs.workflows == 'true' - name: install UV run: | pip install uv --quiet