debug 2
Some checks failed
List Infisical Secrets / list-secrets (push) Failing after 12s

This commit is contained in:
aydent
2026-01-25 00:00:53 +01:00
parent 32feacb375
commit a67ed6239f

View File

@@ -26,9 +26,11 @@ jobs:
CLIENT_SECRET: ${{ secrets.INFISICAL_CLIENT_SECRET }} CLIENT_SECRET: ${{ secrets.INFISICAL_CLIENT_SECRET }}
run: | run: |
echo "Testing authentication endpoint..." echo "Testing authentication endpoint..."
curl -v -X POST https://infisical.lemarechal.eu/api/v1/auth/universal-auth/login \ # Use -s to be silent and -S to show errors, then pipe to cat to see the body
RESPONSE=$(curl -s -S -X POST https://infisical.lemarechal.eu/api/v1/auth/universal-auth/login \
-H "Content-Type: application/json" \ -H "Content-Type: application/json" \
-d "{\"clientId\": \"$CLIENT_ID\", \"clientSecret\": \"$CLIENT_SECRET\"}" -d "{\"clientId\": \"$CLIENT_ID\", \"clientSecret\": \"$CLIENT_SECRET\"}")
echo "API Response: $RESPONSE"
- name: Fetch Secrets from Infisical - name: Fetch Secrets from Infisical
uses: https://github.com/Infisical/secrets-action@v1.0.7 uses: https://github.com/Infisical/secrets-action@v1.0.7