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 ==="