This commit is contained in:
parent
04e19f22a9
commit
114614e4bd
1 changed files with 6 additions and 4 deletions
|
@ -1,17 +1,19 @@
|
||||||
steps:
|
steps:
|
||||||
tailwind:
|
tailwind:
|
||||||
image: d3fk/tailwindcss:latest
|
image: alpine/curl:latest
|
||||||
commands:
|
commands:
|
||||||
- tailwind -o static/styles.css --minify
|
- curl -sLO https://github.com/tailwindlabs/tailwindcss/releases/download/v3.4.15/tailwindcss-linux-x64
|
||||||
|
- chmod +x tailwindcss-linux-x64
|
||||||
|
- ./tailwindcss-linux-x64 -o static/styles.css --minify
|
||||||
|
|
||||||
zola:
|
zola:
|
||||||
image: jauderho/zola
|
image: jauderho/zola:latest
|
||||||
commands:
|
commands:
|
||||||
- zola build
|
- zola build
|
||||||
- rm public/404.html public/robots.txt public/sitemap.xml
|
- rm public/404.html public/robots.txt public/sitemap.xml
|
||||||
|
|
||||||
zip:
|
zip:
|
||||||
image: joshkeegan/zip
|
image: joshkeegan/zip:latest
|
||||||
commands:
|
commands:
|
||||||
- cd public
|
- cd public
|
||||||
- zip -r project.zip . -x ".*"
|
- zip -r project.zip . -x ".*"
|
||||||
|
|
Loading…
Reference in a new issue