Compare commits

..

2 Commits

Author SHA1 Message Date
bf5c9f1650 Hithomelabs/CFTunnels#145: Replace --method=POST with --post-data= for BusyBox wget compatibility
All checks were successful
sample gradle build and test / build (pull_request) Successful in 1m55s
sample gradle build and test / tag (push) Successful in 7s
sample gradle build and test / build_tag_push (push) Successful in 2m37s
2026-07-08 21:05:48 +00:00
bd2d32fa8c Hithomelabs/CFTunnels#145: Replace --method=POST with --post-data= for BusyBox wget compatibility 2026-07-08 21:05:42 +00:00
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ jobs:
API_KEY: ${{ secrets.PORTAINER_SERVICE_API_KEY_PROD }} API_KEY: ${{ secrets.PORTAINER_SERVICE_API_KEY_PROD }}
run: | run: |
wget -q --no-check-certificate --timeout=30 \ wget -q --no-check-certificate --timeout=30 \
--method=POST \ --post-data= \
--header="X-API-Key: $API_KEY" \ --header="X-API-Key: $API_KEY" \
-O - \ -O - \
"$PORTAINER_AUTOMATION_URL/api/deploy/$STACK_ID" 2>&1 \ "$PORTAINER_AUTOMATION_URL/api/deploy/$STACK_ID" 2>&1 \

View File

@ -72,7 +72,7 @@ jobs:
API_KEY: ${{ secrets.PORTAINER_SERVICE_API_KEY }} API_KEY: ${{ secrets.PORTAINER_SERVICE_API_KEY }}
run: | run: |
wget -q --no-check-certificate --timeout=30 \ wget -q --no-check-certificate --timeout=30 \
--method=POST \ --post-data= \
--header="X-API-Key: $API_KEY" \ --header="X-API-Key: $API_KEY" \
-O - \ -O - \
"$PORTAINER_AUTOMATION_URL/api/deploy/$STACK_ID" 2>&1 \ "$PORTAINER_AUTOMATION_URL/api/deploy/$STACK_ID" 2>&1 \