Skip to content

Commit ffe3f96

Browse files
fix(publish): quote gate job names to avoid YAML colon-in-scalar error
1 parent f51327e commit ffe3f96

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ jobs:
621621
continue-on-error: true
622622

623623
check-snapshot:
624-
name: Check: main branch / SNAPSHOT
624+
name: "Check: main branch / SNAPSHOT"
625625
needs: [report]
626626
runs-on: ubuntu-latest
627627
if: >-
@@ -632,7 +632,7 @@ jobs:
632632
run: echo "Confirmed on snapshot ref ${{ github.ref }}"
633633

634634
check-tag:
635-
name: Check: v* tag
635+
name: "Check: v* tag"
636636
needs: [report]
637637
runs-on: ubuntu-latest
638638
if: startsWith(github.ref, 'refs/tags/v')

0 commit comments

Comments
 (0)