From 28c13d77091acdbcf9e69d28fd5060aa9324febf Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Thu, 26 Oct 2023 21:09:12 +0200 Subject: [PATCH] Fix GitHub action build.yaml (#2868) --- .github/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a664e5109..f1498155d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -281,10 +281,10 @@ jobs: - name: Flush CloudFlare cache run: | curl --silent --show-error --fail -X POST \ - "https://api.cloudflare.com/client/v4/zones/${{ secrets.CF_ZONE }}/purge_cache" \ - -H "Authorization: Bearer ${{ secrets.CF_TOKEN }}" \ - -H "Content-Type: application/json" \ - --data '{"files": [ + "https://api.cloudflare.com/client/v4/zones/${{ secrets.CF_ZONE }}/purge_cache" \ + -H "Authorization: Bearer ${{ secrets.CF_TOKEN }}" \ + -H "Content-Type: application/json" \ + --data '{"files": [ "https://os-artifacts.home-assistant.io/index.html", "https://os-artifacts.home-assistant.io/index.json" ] }'