Skip to content

Commit 8b0ff4b

Browse files
committed
Add version consistency validation to publish workflow
1 parent eb55ffe commit 8b0ff4b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/publish-socketbin.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,11 @@ jobs:
138138
VERSION="${VERSION#v}"
139139
echo "version=${VERSION}" >> $GITHUB_OUTPUT
140140
141+
- name: Check version consistency
142+
run: |
143+
echo "🔍 Checking version consistency for v${{ steps.version.outputs.version }}..."
144+
node scripts/check-version-consistency.mjs ${{ steps.version.outputs.version }}
145+
141146
- name: Download all binaries
142147
uses: actions/download-artifact@v4
143148
with:

0 commit comments

Comments
 (0)