⬆️ Update ghcr.io/linuxserver/bazarr Docker digest to 25f0d19 #38
1 changed files with 21 additions and 2 deletions
|
@ -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 | grep '^iac/docker/' | cut -d/ -f3 | 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)
|
||||
|
|
Loading…
Reference in a new issue