From 96818588982ffd04fb37cd951394a822933edb8f Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Wed, 17 Jun 2026 20:50:25 -0400 Subject: [PATCH] Build CSS for jobs that need the asset --- .gitea/workflows/push.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index 8b98743..04bacac 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -21,6 +21,8 @@ jobs: uses: actions/checkout@v4 - name: Use Cache uses: Swatinem/rust-cache@v2 + - name: Run tailwindcss + run: tailwindcss --input style/tailwind.css --output assets/tailwind.css - name: Test project run: cargo test --all-targets --all-features @@ -31,6 +33,8 @@ jobs: uses: actions/checkout@v4 - name: Use Cache uses: Swatinem/rust-cache@v2 + - name: Run tailwindcss + run: tailwindcss --input style/tailwind.css --output assets/tailwind.css - name: Generate docs run: cargo doc --no-deps - name: Upload docs @@ -56,6 +60,8 @@ jobs: uses: actions/checkout@v4 - name: Use Cache uses: Swatinem/rust-cache@v2 + - name: Run tailwindcss + run: tailwindcss --input style/tailwind.css --output assets/tailwind.css - name: Run clippy env: RUSTFLAGS: "-D warnings"