Compare commits
3 commits
be237483d7
...
42bb79d0ac
Author | SHA1 | Date | |
---|---|---|---|
42bb79d0ac | |||
841f2b5b12 | |||
435cc79fba |
1 changed files with 8 additions and 2 deletions
|
@ -42,6 +42,9 @@ jobs:
|
|||
downloaders)
|
||||
target_host=${{ secrets.DOWNLOADERS_IP }}
|
||||
;;
|
||||
AI)
|
||||
target_host="ai.lan"
|
||||
;;
|
||||
# Add cases for other folders/hosts
|
||||
*)
|
||||
echo "Unknown folder: $folder"
|
||||
|
@ -67,7 +70,10 @@ jobs:
|
|||
- name: Fetch AWX Job Logs
|
||||
run: |
|
||||
# Fetch the most recent job from AWX
|
||||
job_id=$(curl -s -H "Authorization: Bearer ${{ secrets.AWX_API_TOKEN }}" https://awx.mafyuh.xyz/api/v2/job_templates/13/jobs?order_by=-id | jq -r '.results[0].id')
|
||||
job_id=$(curl -s -H "Authorization: Bearer ${{ secrets.AWX_API_TOKEN }}" https://awx.mafyuh.xyz/api/v2/job_templates/13/jobs/?order_by=-id | jq -r '.results[0].id')
|
||||
|
||||
# Fetch the logs for the job
|
||||
curl -s -H "Authorization: Bearer ${{ secrets.AWX_API_TOKEN }}" https://awx.mafyuh.xyz/api/v2/jobs/$job_id/stdout/
|
||||
logs=$(curl -s -H "Authorization: Bearer ${{ secrets.AWX_API_TOKEN }}" https://awx.mafyuh.xyz/api/v2/jobs/$job_id/stdout/?format=json)
|
||||
|
||||
# Display the logs
|
||||
echo "$logs"
|
||||
|
|
Reference in a new issue