Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update react.js.yml #1

Merged
merged 1 commit into from
Jul 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/react.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,21 @@ jobs:
env:
KINSTA_API_KEY: ${{ secrets.KINSTA_API_KEY }} # Assuming you have your API key stored as a GitHub secret
run: |
curl -i -X POST \
set +e # Disable error handling temporarily to check the exit code of the curl command
response=$(curl -i -X POST \
https://api.kinsta.com/v2/applications/deployments \
-H "Authorization: Bearer $KINSTA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"app_id": "97354c6b-089f-4643-bef0-f466ba4e9dbc",
"branch": "main"
}'
}' 2>&1) # Capture both stdout and stderr
exit_code=$?
set -e # Re-enable error handling

if [ $exit_code -ne 0 ]; then
echo "$response" # Output the error response for visibility
exit 1 # Exit with an error status code to mark the job as failed
fi

# Add more jobs if needed...