7 Commits

Author SHA1 Message Date
ef5149864b Merge pull request 'add tests' (#58) from fix-agaix into main
Reviewed-on: #58
2025-12-08 12:14:42 +00:00
f906007246 Merge branch 'main' into fix-agaix 2025-12-02 07:42:51 +00:00
7d47da47a3 add tests 2025-12-02 10:42:20 +03:00
8306409d93 Merge pull request 'fix-agaix' (#57) from fix-agaix into main
Reviewed-on: #57
2025-11-19 10:57:14 +00:00
6efe8999bc Merge branch 'main' of bb.hublab.ru:HUB/workflows 2025-11-19 13:56:49 +03:00
d558a37736 fix 2025-11-19 13:56:46 +03:00
42914c5104 Merge pull request 'fix' (#56) from fix-again into main
Reviewed-on: #56
2025-11-19 10:22:40 +00:00

View File

@@ -46,7 +46,7 @@ runs:
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"
argocd app sync ${{ inputs.environment }} --resource apps:Deployment:$name;
done
- name: Refresh secret
@@ -59,3 +59,9 @@ runs:
with:
version: 3.1.3
command: app actions run ${{ inputs.environment }} restart --kind Deployment --resource-name ${{github.event.repository.name}}
- name: Run Tests
uses: clowdhaus/argo-cd-action/@main
with:
version: 3.1.3
command: app actions run ${{ inputs.environment }} run-tests --kind Deployment --resource-name ${{github.event.repository.name}}