1
Fork 0

Use tailwind standalone
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Hadeed 2024-11-25 22:05:23 +05:00
parent 8d0f443752
commit 6536413a1b

View file

@ -1,9 +1,11 @@
steps: steps:
deploy: deploy:
image: node:18-alpine image: alpine:latest
commands: commands:
- apk add --no-cache curl zip zola - apk add --no-cache curl zip zola
- npx --yes tailwindcss -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 build - zola build
- cd public - cd public
- rm 404.html robots.txt sitemap.xml - rm 404.html robots.txt sitemap.xml
@ -13,7 +15,7 @@ steps:
- curl -s -w "%{http_code}" -F "zipfile=@project.zip" -H "$AUTH_HEADER" "$API_URL" | grep -q 200 - curl -s -w "%{http_code}" -F "zipfile=@project.zip" -H "$AUTH_HEADER" "$API_URL" | grep -q 200
secrets: [ PAGES_API_KEY ] secrets: [ PAGES_API_KEY ]
when: when:
- event: manual - event: manual
- event: push - event: push
branch: main branch: main