1
Fork 0
personal_website/.woodpecker.yaml
Hadeed Ahmad fb4def5849
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Change api key
2024-10-07 18:47:04 +05:00

14 lines
421 B
YAML

steps:
deploy:
image: alpine:latest
name: Zip files
commands:
- apk add --no-cache zip curl
- zip -r project.zip . -x ".*"
- 'curl -s -w "%{http_code}" -X POST -F "zipfile=@project.zip" -H "Authorization: Bearer $PAGES_API_KEY" https://pages.hadeedahmad.com/pages/me | grep -q "200"'
secrets: [ PAGES_API_KEY ]
when:
- event: manual
- event: push
branch: main