From 66abf90cba59b05fec8b6acec072cd4d97d60d80 Mon Sep 17 00:00:00 2001 From: Alex Shevchuk Date: Tue, 19 Aug 2025 02:23:16 +0300 Subject: [PATCH] 31 --- .gitea/workflows/deploy_staging.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy_staging.yaml b/.gitea/workflows/deploy_staging.yaml index b2369b7..0767bf3 100644 --- a/.gitea/workflows/deploy_staging.yaml +++ b/.gitea/workflows/deploy_staging.yaml @@ -62,7 +62,7 @@ jobs: - name: Verify required files exist run: | echo "Checking for config file..." - if [ ! -f "./build/config/staging.yaml" ]; then + if [ ! -f ".build/config/staging.yaml" ]; then echo "Error: staging.yaml not found!" exit 1 fi @@ -87,7 +87,7 @@ jobs: env: IMAGE_NAME: molvaapp/test_deploy IMAGE_TAG: ${{ steps.git-metadata.outputs.GIT_SHA }} - CONFIG_FILE: ./build/config/staging.yaml + CONFIG_FILE: .build/config/staging.yaml run: | # export IMAGE_TAG=${{ steps.git-metadata.outputs.GIT_TAG != "none" && steps.git-metadata.outputs.GIT_TAG || steps.git-metadata.outputs.GIT_SHA }} echo "=== STARTING DOCKER BUILD ==="