Files
postgres-actions/.gitea/actions/delete/action.yml
Valentin Afanasev c8aeedafdb Initial commit
2025-08-05 02:11:53 +03:00

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