From 5e9a34ce9ad1f689e2d342ccf2ecce779057e8c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D8=B4=D8=B1=D9=83=D8=A9=20=D8=AE=D8=A8=D9=8A=D8=B1=20?= =?UTF-8?q?=D8=A7=D9=84=D9=85=D8=AD=D8=AF=D9=88=D8=AF=D8=A9?= Date: Tue, 6 Jan 2026 16:34:22 +0200 Subject: [PATCH] Fix condition for deploying to dev server --- .github/workflows/pull_code.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_code.yml b/.github/workflows/pull_code.yml index 10df0cb..613d70d 100644 --- a/.github/workflows/pull_code.yml +++ b/.github/workflows/pull_code.yml @@ -23,7 +23,7 @@ jobs: name: Deploy to dev server <159.89.22.77> runs-on: odex30-runner if: | - (github.ref == 'refs/heads/dev_odex_base' || github.ref == 'refs/heads/dev_odex_hr' || github.ref == 'dev_odex30_accounting') && + (github.ref == 'refs/heads/dev_odex_base' || github.ref == 'refs/heads/dev_odex_hr' || github.ref == 'refs/heads/dev_odex30_accounting') && (github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.environment != ''))