Merge pull request 'fix-again' (#55) from fix-again into main

Reviewed-on: #55
This commit is contained in:
2025-11-19 09:50:23 +00:00

View File

@@ -46,6 +46,14 @@ runs:
with:
version: 3.1.3
command: app sync ${{ inputs.environment }} --resource apps:Deployment:${{ github.event.repository.name }}*
- name: Sync related deployments
shell: bash
run: |
for name in $(argocd app resources ${{ inputs.environment }} | grep Deploy | grep ${{ github.event.repository.name }} | awk '{print($4)}'); do
echo "Syncing $name"
argocd app sync ${{ inputs.environment }} --resource "$name"
done
- name: Refresh secret
uses: clowdhaus/argo-cd-action/@main
with: