This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
Auto-Homelab/.forgejo/workflows/CD.yml

85 lines
3 KiB
YAML
Raw Normal View History

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 21:38:03 -04:00
runs-on: ubuntu-22.04
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 22:19:28 -04:00
AI)
target_host="ai.lan"
;;
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
2024-06-09 22:17:52 -04:00
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')
2024-06-09 21:00:55 -04:00
# Fetch the logs for the job
2024-06-09 22:17:52 -04:00
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
2024-06-09 22:31:14 -04:00
echo "Range:"
echo "Start: $(echo "$logs" | jq -r '.range.start')"
echo "End: $(echo "$logs" | jq -r '.range.end')"
echo "Absolute End: $(echo "$logs" | jq -r '.range.absolute_end')"
echo "Content:"
echo "$(echo "$logs" | jq -r '.content')"