diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index ca507719fc6..1b1a171576b 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -528,6 +528,11 @@ jobs: cp ./robots.txt build cp ./robots.txt build-ssr/client + - name: Copy .well-known files + run: | + cd packages/web + cp -r ./public/.well-known build + - name: Deploy to Cloudflare (Release) env: CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} @@ -639,6 +644,11 @@ jobs: cp ./robots.txt build cp ./robots.txt build-ssr/client + - name: Copy .well-known files + run: | + cd packages/web + cp -r ./public/.well-known build + - name: Deploy to Cloudflare (Production) env: CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} diff --git a/packages/web/wrangler.toml b/packages/web/wrangler.toml index 0b301ebb363..c20c571ca7e 100644 --- a/packages/web/wrangler.toml +++ b/packages/web/wrangler.toml @@ -5,7 +5,6 @@ main = "./scripts/workers-site/index.js" [site] bucket = "./build" -include = [".well-known/**"] [env.release] name = "audius-release-candidate"