diff options
| author | 2025-08-03 19:10:21 +0700 | |
|---|---|---|
| committer | 2025-08-03 19:10:21 +0700 | |
| commit | 5ca4ea7a8a9e5198de071867a158a648fa08d2be (patch) | |
| tree | 94b6da94cfe8a18f4cfbba82f8c348ef6ebd8d6c /.github | |
| parent | 7503d0f2fb605f014ba9f86dbae448a5e046b109 (diff) | |
| download | web-5ca4ea7a8a9e5198de071867a158a648fa08d2be.tar.gz web-5ca4ea7a8a9e5198de071867a158a648fa08d2be.zip | |
refactor: generate output.css on the run
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build-and-deploy.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index c563ee8..e014dd0 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -11,6 +11,12 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Generate output.css with tailwindcss + uses: ZoeyVid/tailwindcss-update@main + with: + input: static/input.css + output: static/output.css + params: "--minify" - name: Set up QEMU uses: docker/setup-qemu-action@v1 - name: Set up Docker Buildx |