Hadeed Ahmad
07a94f8892
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
38 lines
1,014 B
YAML
38 lines
1,014 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:
|
|
- apk add --no-cache zola
|
|
- 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:
|
|
- apk add --no-cache curl
|
|
- '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
|