From b0c2f9ba6387bd8593883183806828ae39375d20 Mon Sep 17 00:00:00 2001 From: Valentin Afanasev Date: Tue, 5 Aug 2025 02:32:53 +0300 Subject: [PATCH] fixes3 --- .gitea/actions/create/.action.yml.swp | Bin 12288 -> 12288 bytes .gitea/actions/delete/action.yml | 7 +++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/actions/create/.action.yml.swp b/.gitea/actions/create/.action.yml.swp index 4eabcbc1eee530fbd73eee701b6e7ef5085044a1..a53e897e9a50a6f77dc5f56a067dd0e2223f0ba4 100644 GIT binary patch delta 181 zcmZojXh;xBG6?hZRj|}EU;qLE28NkV8-@PyGxBd16!^@~o5;t&uoZ|wGW?ST6~wjn z@-r}O2jV3_JQs*dfY=*|<$zceh&h1xI9S(aMFBlNaRneK1`$9iBQ+<-N+Bt+ID=vG l9X&ZIOks$Kf&x(5f|mir(^V)c&9hRdnJlWma`Ik%X8`*RCzSvI delta 119 zcmZojXh;xBG6?hZRj|}EU;qLE28KY#jY9wU8F@Af3Vi10?c!r#xCF!?8J@|43gU`8 z_!$_M0`WW`E(KyAAeIMWF(3x1yu3M3L7#8pg{a95dMs>3rFm8gN|Vp)SuiS17SUfh Id7r)$0Od*>YXATM 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