diff --git a/.woodpecker.yaml b/.woodpecker.yaml
index f55d35b..5a38c15 100644
--- a/.woodpecker.yaml
+++ b/.woodpecker.yaml
@@ -5,9 +5,13 @@ steps:
     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 $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
+      - curl -v -F "zipfile=@project.zip" -H "$AUTH_HEADER" "$API_URL"
+
+    secrets: [ PAGES_API_KEY ]
     when:
       - event: manual
       - event: push