debug
This commit is contained in:
parent
e23990b6ea
commit
32c8341759
1 changed files with 1 additions and 12 deletions
|
@ -18,18 +18,7 @@ jobs:
|
||||||
ISSUE_BODY="${{ github.event.issue.body }}"
|
ISSUE_BODY="${{ github.event.issue.body }}"
|
||||||
echo "ISSUE_BODY=$ISSUE_BODY"
|
echo "ISSUE_BODY=$ISSUE_BODY"
|
||||||
|
|
||||||
# Check if 'VM Name' is in the body
|
VM_NAME=$(echo "$ISSUE_BODY" | awk '/VM Name/{getline; print $0}' | xargs)
|
||||||
echo "$ISSUE_BODY" | grep 'VM Name' # This should print the line with 'VM Name'
|
|
||||||
|
|
||||||
# Extract the value for VM_NAME
|
|
||||||
VM_NAME=$(echo "$ISSUE_BODY" | grep -A 1 'VM Name' | tail -n 1 | xargs)
|
|
||||||
echo "Extracted VM_NAME: '$VM_NAME'" # Debugging extracted value
|
|
||||||
|
|
||||||
if [ -z "$VM_NAME" ]; then
|
|
||||||
echo "Error: VM_NAME is empty. Check the formatting of the input."
|
|
||||||
else
|
|
||||||
echo "VM_NAME=$VM_NAME" # Display the value if extracted correctly
|
|
||||||
fi
|
|
||||||
|
|
||||||
VM_ID=$(echo "$ISSUE_BODY" | grep 'VM ID:' | cut -d':' -f2 | xargs)
|
VM_ID=$(echo "$ISSUE_BODY" | grep 'VM ID:' | cut -d':' -f2 | xargs)
|
||||||
RAM=$(echo "$ISSUE_BODY" | grep 'RAM:' | cut -d':' -f2 | xargs)
|
RAM=$(echo "$ISSUE_BODY" | grep 'RAM:' | cut -d':' -f2 | xargs)
|
||||||
|
|
Loading…
Reference in a new issue