Skip to content

Commit 0cdaac0

Browse files
committed
fix(next): correct GitHub workflow branch condition
1 parent c7e90b0 commit 0cdaac0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
ghcr.io/${{ github.repository }}
5656
tags: |
5757
type=raw,value=develop,enable={{is_default_branch}}
58-
type=raw,value=next,enable=${{ branch == 'next' }}
58+
type=raw,value=next,enable=${{ github.ref_name == 'next' }}
5959
- name: Build and push
6060
uses: docker/build-push-action@v6
6161
with:

0 commit comments

Comments
 (0)