Skip to content

Commit 3677c96

Browse files
committed
fix: Use correct doctl column name SizeSlug
- Change Size to SizeSlug for droplet size check - Fixes 'unknown column Size' error in integration test
1 parent 48a17f1 commit 3677c96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,15 +283,15 @@ jobs:
283283
# Verify droplet was actually resized via doctl
284284
echo "🔍 Verifying droplet size via doctl..."
285285
doctl auth init --access-token "${{ secrets.DIGITALOCEAN_TOKEN }}"
286-
ACTUAL_SIZE=$(doctl compute droplet get "${{ steps.test-name.outputs.test-name }}" --format Size --no-header)
286+
ACTUAL_SIZE=$(doctl compute droplet get "${{ steps.test-name.outputs.test-name }}" --format SizeSlug --no-header)
287287
echo "📊 Actual droplet size: $ACTUAL_SIZE"
288288
289289
if [ "$ACTUAL_SIZE" = "s-1vcpu-2gb" ]; then
290290
echo "✅ PASS: Droplet successfully resized to 2GB"
291291
else
292292
echo "❌ FAIL: Droplet is still $ACTUAL_SIZE (expected s-1vcpu-2gb)"
293293
echo "📋 Droplet info:"
294-
doctl compute droplet get "${{ steps.test-name.outputs.test-name }}" --format Name,Size,Memory,Status
294+
doctl compute droplet get "${{ steps.test-name.outputs.test-name }}" --format Name,SizeSlug,Memory,Status
295295
exit 1
296296
fi
297297

0 commit comments

Comments
 (0)