From 95639d4a3ad28423a46df9c4b75130becc4238e8 Mon Sep 17 00:00:00 2001 From: Guillaume De Saint Martin Date: Thu, 12 Feb 2026 14:30:04 +0100 Subject: [PATCH 1/3] tmp --- packages/tentacles/scripts/clear_cloudflare_cache.py | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/tentacles/scripts/clear_cloudflare_cache.py b/packages/tentacles/scripts/clear_cloudflare_cache.py index 9ee38b71d..27282853c 100644 --- a/packages/tentacles/scripts/clear_cloudflare_cache.py +++ b/packages/tentacles/scripts/clear_cloudflare_cache.py @@ -21,6 +21,7 @@ def _send_purge_cache_request(url: str, cloudflare_token: str, urls_to_purge: li ) as resp: if resp.status_code == 200: print(f"Cache purged for {', '.join(urls_to_purge)}") + print(resp.text) else: print(f"Error when purging cache, status: {resp.status_code}, body: {resp.text}") From 79a2ddbac9835cb63cbb2290b932a190d3c6b9a1 Mon Sep 17 00:00:00 2001 From: Guillaume De Saint Martin Date: Thu, 12 Feb 2026 14:37:34 +0100 Subject: [PATCH 2/3] tmp --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cd178e8dc..d5212706c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -282,7 +282,7 @@ jobs: cache-to: type=local,dest=/tmp/.buildx-cache tentacles: - needs: [ build, tests ] + needs: [ build ] if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/') name: ${{ matrix.os }}${{ matrix.arch }} - Python ${{ matrix.version }} - Upload Tentacles runs-on: ${{ matrix.os }} @@ -334,7 +334,6 @@ jobs: python packages/tentacles/scripts/clear_cloudflare_cache.py ${TARGET_BRANCH#refs/*/} - name: Publish latest tentacles - if: github.ref == 'refs/heads/dev' && startsWith(github.ref, 'refs/tags') != true env: S3_API_KEY: ${{ secrets.S3_API_KEY }} S3_API_SECRET_KEY: ${{ secrets.S3_API_SECRET_KEY }} From e25d64a117ea3760d09937ac01e9e8304abe01e1 Mon Sep 17 00:00:00 2001 From: Guillaume De Saint Martin Date: Thu, 12 Feb 2026 14:39:04 +0100 Subject: [PATCH 3/3] ddq --- .github/workflows/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d5212706c..1d694a438 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -283,7 +283,6 @@ jobs: tentacles: needs: [ build ] - if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/') name: ${{ matrix.os }}${{ matrix.arch }} - Python ${{ matrix.version }} - Upload Tentacles runs-on: ${{ matrix.os }} strategy: