Browse code

gha/bin-image: Fix dco running on non-v tags

bin-image workflow was failing for the new docker tags
(`docker-v29.0.0-rc.2`) because it wasn't correctly picked up by the
condition that should filter out tags.

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>

Paweł Gronowski authored on 2025/11/05 23:00:54
Showing 1 changed files
... ...
@@ -37,7 +37,7 @@ env:
37 37
 
38 38
 jobs:
39 39
   validate-dco:
40
-    if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
40
+    if: ${{ !startsWith(github.ref, 'refs/tags/') }}
41 41
     uses: ./.github/workflows/.dco.yml
42 42
 
43 43
   prepare: