Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit e09ac16

Browse files
authored
Fix conditional file selection in workflow
1 parent 5d2050c commit e09ac16

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/scheduled_jobs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
push: ${{ github.ref == 'refs/heads/main' }} # Only push on main branch
7171
tags: ${{ steps.meta.outputs.tags }}
7272
labels: ${{ steps.meta.outputs.labels }}
73-
file: ${{ matrix.variant == 'alpine' ? 'Dockerfile.alpine' : 'Dockerfile' }}
73+
file: ${{ matrix.variant == 'alpine' && 'Dockerfile.alpine' || 'Dockerfile' }}
7474
build-args: |
7575
RUBY_VERSION=${{ matrix.ruby_version }}
7676
POSTGRESQL_VERSION=${{ matrix.postgresql_version }}

0 commit comments

Comments
 (0)