Skip to content
This repository was archived by the owner on Mar 14, 2026. It is now read-only.

Commit 9d8e903

Browse files
committed
fix(ci): enable image push on dev branch
1 parent ad8959e commit 9d8e903

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ jobs:
143143
- name: Determine if push is allowed
144144
id: push-check
145145
run: |
146-
if [[ "${{ github.ref_type }}" == "tag" ]]; then
146+
# Push only on tags and dev branch
147+
if [[ "${{ github.ref_type }}" == "tag" || "${{ github.ref }}" == "refs/heads/dev" ]]; then
147148
echo "push=true" >> $GITHUB_OUTPUT
148149
else
149150
echo "push=false" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)