Fix production-deploy workflow: use array syntax for branches, remove if condition
This commit is contained in:
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user