⬆️ Update ghcr.io/linuxserver/radarr Docker digest to 2a02b31 #35
3 changed files with 26 additions and 11 deletions
|
@ -6,7 +6,7 @@ on:
|
|||
jobs:
|
||||
deploy:
|
||||
if: github.event.pull_request.merged == true
|
||||
runs-on: ubuntu-22.04
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
@ -20,13 +20,32 @@ jobs:
|
|||
if [ "$(git rev-parse --is-shallow-repository)" = "true" ]; then
|
||||
git fetch --unshallow
|
||||
fi
|
||||
folders=$(git diff --name-only HEAD~1 HEAD | cut -d/ -f1 | sort | uniq)
|
||||
folders=$(git diff --name-only HEAD~1 HEAD | grep '^docker/' | cut -d/ -f2 | sort | uniq)
|
||||
echo "Modified folders: $folders"
|
||||
echo "::set-output name=folders::$folders"
|
||||
|
||||
- name: Set condition for deployment
|
||||
id: set-condition
|
||||
run: |
|
||||
if [ -z "${{ steps.detect-changes.outputs.folders }}" ]; then
|
||||
echo "No relevant changes detected."
|
||||
echo "::set-output name=continue::false"
|
||||
else
|
||||
echo "Relevant changes detected."
|
||||
echo "::set-output name=continue::true"
|
||||
fi
|
||||
|
||||
conditional-deploy:
|
||||
if: needs.deploy.outputs.continue == 'true'
|
||||
runs-on: ubuntu-22.04
|
||||
needs: deploy
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Deploy to hosts
|
||||
run: |
|
||||
IFS=' ' read -r -a folder_array <<< "${{ steps.detect-changes.outputs.folders }}"
|
||||
IFS=' ' read -r -a folder_array <<< "${{ needs.deploy.outputs.folders }}"
|
||||
for folder in "${folder_array[@]}"; do
|
||||
case $folder in
|
||||
arrs)
|
||||
|
@ -83,8 +102,8 @@ jobs:
|
|||
-d "{\"extra_vars\": {\"target_host\": \"$target_host\", \"folder\": \"$folder\"}}" \
|
||||
"https://awx.mafyuh.xyz/api/v2/job_templates/13/launch/"
|
||||
|
||||
sleep 45 # Delay for 45 seconds before fetching logs
|
||||
|
||||
sleep 45
|
||||
|
||||
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')
|
||||
logs=$(curl -s -H "Authorization: Bearer ${{ secrets.AWX_API_TOKEN }}" https://awx.mafyuh.xyz/api/v2/jobs/$job_id/stdout/?format=json)
|
||||
echo "AWX Job Logs for folder: $folder"
|
||||
|
|
|
@ -17,14 +17,10 @@ jobs:
|
|||
with:
|
||||
node-version: 14
|
||||
|
||||
- name: Install yamllint
|
||||
run: |
|
||||
npm install -g yaml-lint
|
||||
|
||||
- name: Show yamllint version
|
||||
run: |
|
||||
yamllint --version
|
||||
|
||||
- name: Lint .yml files
|
||||
run: |
|
||||
yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" ./**/*.yml
|
||||
yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" docker/**/*.yml
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
services:
|
||||
bazarr:
|
||||
image: ghcr.io/linuxserver/bazarr@sha256:5da74fc1bbd5da69e3b4f9b2376f6ccfbe3b47f143e6eb5651ed37cc1d4412dd
|
||||
image: ghcr.io/linuxserver/bazarr@sha256:25f0d19ba9226fdf15aec0fc7fa134ba89fc6f77f09d7bd45b33c5960c47821e
|
||||
container_name: bazarr
|
||||
ports:
|
||||
- "6767:6767"
|
||||
|
|
Loading…
Reference in a new issue