2024-06-09 15:18:49 -04:00
|
|
|
name: Deploy to Hosts
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [closed]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
if: github.event.pull_request.merged == true
|
2024-06-09 15:27:58 -04:00
|
|
|
runs-on: docker
|
2024-06-09 15:18:49 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2024-06-09 17:43:43 -04:00
|
|
|
- name: Fetch all history for git diff
|
|
|
|
run: git fetch --depth=2
|
|
|
|
|
2024-06-09 15:18:49 -04:00
|
|
|
- name: Detect modified folders
|
|
|
|
id: detect-changes
|
|
|
|
run: |
|
2024-06-09 17:43:43 -04:00
|
|
|
if [ "$(git rev-parse --is-shallow-repository)" = "true" ]; then
|
|
|
|
git fetch --unshallow
|
2024-06-09 17:30:36 -04:00
|
|
|
fi
|
2024-06-09 17:43:43 -04:00
|
|
|
folders=$(git diff --name-only HEAD~1 HEAD | cut -d/ -f1 | sort | uniq)
|
2024-06-09 15:18:49 -04:00
|
|
|
echo "Modified folders: $folders"
|
|
|
|
echo "::set-output name=folders::$folders"
|
|
|
|
|
|
|
|
- name: Determine target host
|
|
|
|
id: determine-host
|
|
|
|
run: |
|
2024-06-09 17:43:43 -04:00
|
|
|
folder=$(echo "${{ steps.detect-changes.outputs.folders }}" | head -n 1)
|
|
|
|
if [ -z "$folder" ]; then
|
|
|
|
echo "No modified folders detected"
|
|
|
|
exit 1
|
|
|
|
fi
|
2024-06-09 15:18:49 -04:00
|
|
|
case $folder in
|
|
|
|
arrs)
|
2024-06-09 18:47:07 -04:00
|
|
|
target_host="arrs.lan"
|
2024-06-09 15:18:49 -04:00
|
|
|
;;
|
|
|
|
ag_main)
|
2024-06-09 17:43:43 -04:00
|
|
|
target_host=${{ secrets.AGMAIN_IP }}
|
2024-06-09 15:18:49 -04:00
|
|
|
;;
|
|
|
|
downloaders)
|
2024-06-09 17:43:43 -04:00
|
|
|
target_host=${{ secrets.DOWNLOADERS_IP }}
|
2024-06-09 15:18:49 -04:00
|
|
|
;;
|
2024-06-09 15:25:48 -04:00
|
|
|
# Add cases for other folders/hosts
|
|
|
|
*)
|
|
|
|
echo "Unknown folder: $folder"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
2024-06-09 17:43:43 -04:00
|
|
|
echo "::set-output name=target_host::$target_host"
|
2024-06-09 15:25:48 -04:00
|
|
|
echo "::set-output name=folder::$folder"
|
|
|
|
|
|
|
|
- name: Trigger AWX Job
|
|
|
|
run: |
|
2024-06-09 19:27:17 -04:00
|
|
|
TARGET_HOST="${{ steps.determine-host.outputs.target_host }}"
|
|
|
|
FOLDER="${{ steps.determine-host.outputs.folder }}"
|
|
|
|
echo "Triggering AWX Job with target host: $TARGET_HOST and folder: $FOLDER"
|
|
|
|
curl -X POST -k -H "Content-Type: application/json" \
|
2024-06-09 15:25:48 -04:00
|
|
|
-H "Authorization: Bearer ${{ secrets.AWX_API_TOKEN }}" \
|
2024-06-09 19:27:17 -04:00
|
|
|
-d "{\"extra_vars\": {\"target_host\": \"$TARGET_HOST\", \"folder\": \"$FOLDER\"}}" \
|
2024-06-09 21:00:55 -04:00
|
|
|
"https://awx.mafyuh.xyz/api/v2/job_templates/13/launch/"
|
|
|
|
|
|
|
|
- name: Delay for 2 minutes
|
|
|
|
run: sleep 120 # 120 seconds = 2 minutes
|
|
|
|
|
|
|
|
- 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')
|
|
|
|
|
|
|
|
# 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/
|