1
Fork 0
personal_website/.woodpecker.yaml
Hadeed Ahmad 50c8731834
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Try zola
2024-11-25 19:39:14 +05:00

24 lines
629 B
YAML

steps:
build:
image: alpine:edge
commands:
- apk add --no-cache zola
- zola build
- rm build/robots.txt sitemal.xml
deploy:
image: alpine:latest
name: Zip files
commands:
- apk add --no-cache zip curl
- cd public
- 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