1
Fork 0
personal_website/.woodpecker.yaml
Hadeed Ahmad 8d0f443752
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add tailwind
2024-11-25 21:50:38 +05:00

19 lines
599 B
YAML

steps:
deploy:
image: node:18-alpine
commands:
- apk add --no-cache curl zip zola
- npx --yes tailwindcss -o static/styles.css --minify
- zola build
- cd public
- rm 404.html robots.txt sitemap.xml
- zip -r project.zip . -x ".*"
- '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