1
Fork 0
personal_website/.woodpecker.yaml
Hadeed Ahmad aeb212501c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
split commands
2024-11-25 22:19:54 +05:00

36 lines
950 B
YAML

steps:
tailwind:
image: alpine:latest
commands:
- apk add --no-cache curl
- 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:
image: alpine:latest
commands:
- zola build
- rm public/404.html public/robots.txt public/sitemap.xml
zip:
image: alpine:latest
commands:
- apk add --no-cache zip
- cd public
- zip -r project.zip . -x ".*"
- mv project.zip ..
upload:
image: alpine:latest
commands:
- 'AUTH_HEADER="Authorization: Bearer $PAGES_API_KEY"'
- API_URL=https://pages.hadeedahmad.com/pages/me
- curl -s -w "%{http_code}" -F "zipfile=@project.zip" -H "$AUTH_HEADER" "$API_URL" | grep -q 200
secrets: [ PAGES_API_KEY ]
when:
- event: manual
- event: push
branch: main