Files
postgres-actions/.gitea/actions/delete/action.yml
Valentin Afanasev b0c2f9ba63 fixes3
2025-08-05 02:32:53 +03:00

15 lines
334 B
YAML

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
shell: bash
- run: werf kubectl delete pod/${SERVICE_NAME} --ignore-not-found
shell: bash