diff --git a/.gitea/actions/create/.action.yml.swp b/.gitea/actions/create/.action.yml.swp index 4eabcbc..a53e897 100644 Binary files a/.gitea/actions/create/.action.yml.swp and b/.gitea/actions/create/.action.yml.swp differ diff --git a/.gitea/actions/delete/action.yml b/.gitea/actions/delete/action.yml index f3e7007..d32dce5 100644 --- a/.gitea/actions/delete/action.yml +++ b/.gitea/actions/delete/action.yml @@ -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