From 348184e9d305dcc10f24b3a7cc3f305ed33a025c Mon Sep 17 00:00:00 2001 From: Krille Date: Fri, 14 Jul 2023 19:37:26 +0900 Subject: [PATCH] CI: Fix tailwind work dir --- .github/workflows/main_deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main_deploy.yaml b/.github/workflows/main_deploy.yaml index fa4989611..bdb6677b5 100644 --- a/.github/workflows/main_deploy.yaml +++ b/.github/workflows/main_deploy.yaml @@ -29,7 +29,7 @@ jobs: run: flutter build web --release --verbose --source-maps - name: Build Website run: | - npx tailwindcss -o ./tailwind.css --minify + cd docs && npx tailwindcss -o ./tailwind.css --minify && cd .. mv docs public mv repo public || true mv build/web/ public/web