29
All checks were successful
Deploy Production / Deploy to Staging (push) Has been skipped

This commit is contained in:
Alex Shevchuk
2025-08-19 02:17:23 +03:00
parent 10397151df
commit ac3beeb1d3
2 changed files with 32 additions and 1 deletions

View File

@@ -59,6 +59,15 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Verify required files exist
run: |
echo "Checking for config file..."
if [ ! -f "./build/config/staging.yaml" ]; then
echo "Error: staging.yaml not found!"
exit 1
fi
echo "All required files exist"
- name: Extract Git metadata
id: git-metadata
run: |
@@ -186,4 +195,4 @@ jobs:
- name: Post-deploy
run: |
echo "Deployment to ${{ inputs.environment }} completed."
echo "Version deployed: ${{ inputs.VERSION }}"
echo "Version deployed: ${{ inputs.version }}"