⬆️ Update ghcr.io/open-webui/open-webui Docker tag to v0.3.1 #323

Merged
mafyuh merged 3 commits from renovate/ghcr.io-open-webui-open-webui-0.x into main 2024-06-09 23:11:40 -04:00
2 changed files with 2 additions and 20 deletions
Showing only changes of commit a0d452758d - Show all commits

View file

@ -94,8 +94,8 @@ jobs:
-d "{\"extra_vars\": {\"target_host\": \"$TARGET_HOST\", \"folder\": \"$FOLDER\"}}" \ -d "{\"extra_vars\": {\"target_host\": \"$TARGET_HOST\", \"folder\": \"$FOLDER\"}}" \
"https://awx.mafyuh.xyz/api/v2/job_templates/13/launch/" "https://awx.mafyuh.xyz/api/v2/job_templates/13/launch/"
- name: Delay for 2 minutes - name: Delay for 45 seconds
run: sleep 120 # 120 seconds = 2 minutes run: sleep 45
- name: Fetch AWX Job Logs - name: Fetch AWX Job Logs
run: | run: |

View file

@ -1,18 +0,0 @@
---
name: Get AWX Job Logs
on:
workflow_call:
inputs:
name: get-logs-trigger
jobs:
fetch-logs:
runs-on: docker
steps:
- name: Get 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')
# 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/