This commit is contained in:
parent
cd3816bc74
commit
4e58d321a1
1 changed files with 5 additions and 2 deletions
|
@ -5,9 +5,12 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- apk add --no-cache zip curl
|
- apk add --no-cache zip curl
|
||||||
- zip -r project.zip . -x ".*"
|
- zip -r project.zip . -x ".*"
|
||||||
- 'curl -s -w "%{http_code}" -X POST -F "zipfile=@project.zip" -H "Authorization: Bearer $API_KEY" https://pages.hadeedahmad.com/pages/me | grep -q "200"'
|
|
||||||
|
|
||||||
secrets: [ API_KEY ]
|
- '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:
|
when:
|
||||||
- event: manual
|
- event: manual
|
||||||
- event: push
|
- event: push
|
||||||
|
|
Loading…
Reference in a new issue