We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9106bf7 commit 4adafb9Copy full SHA for 4adafb9
.github/workflows/deploy.yml
@@ -27,6 +27,9 @@ jobs:
27
with:
28
bundler-cache: true
29
30
+ - name: Generate Tailwind CSS
31
+ run: bundle exec tailwindcss -i source/stylesheets/tailwind.css -o source/stylesheets/site.css --minify
32
+
33
- name: Build site with Middleman
34
run: bundle exec middleman build
35
config.rb
@@ -31,10 +31,6 @@
sitemap: File.join(@app.data.site.host, 'sitemap.xml')
end
-before_build do
- system 'tailwindcss -i source/stylesheets/tailwind.css -o source/stylesheets/site.css --minify'
36
-end
37
-
38
activate :inline_svg
39
40
helpers do
0 commit comments