Update .forgejo/workflows/CD.yml
This commit is contained in:
parent
31ae8971bf
commit
11c2c2c82d
1 changed files with 7 additions and 4 deletions
|
@ -35,14 +35,17 @@ jobs:
|
|||
echo "::set-output name=continue::true"
|
||||
fi
|
||||
|
||||
if: steps.set-condition.outputs.continue == 'true'
|
||||
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