Fix production-deploy workflow: use array syntax for branches, remove if condition

This commit is contained in:
2025-10-31 15:28:49 +01:00
parent 0b20e38f1f
commit 5f5ca5f1dc
3 changed files with 181 additions and 1 deletions

View File

@@ -112,7 +112,8 @@ jobs:
build:
name: Build Docker Image
needs: test
if: always() && (needs.test.result == 'success' || needs.test.result == 'skipped')
# Note: if condition might not work correctly in Gitea - always() might need different syntax
# if: always() && (needs.test.result == 'success' || needs.test.result == 'skipped')
runs-on: ubuntu-latest
outputs:
image_tag: ${{ steps.meta.outputs.tag }}