This commit is contained in:
Valentin Afanasev
2025-08-05 02:32:53 +03:00
parent b04c2993c5
commit b0c2f9ba63
2 changed files with 5 additions and 2 deletions

View File

@ -2,10 +2,13 @@ name: Stop pg for tests
inputs:
service_name:
required: true
runs:
using: composite
env:
SERVICE_NAME: ${{ inputs.service_name }}
steps:
run: werf kubectl delete service/${SERVICE_NAME} --ignore-not-found
run: werf kubectl delete pod/${SERVICE_NAME} --ignore-not-found
- run: werf kubectl delete service/${SERVICE_NAME} --ignore-not-found
shell: bash
- run: werf kubectl delete pod/${SERVICE_NAME} --ignore-not-found
shell: bash