strip only starting 'v' char; e.g don't strip from '.dev' (#3368) [skip ci]

This commit is contained in:
Wing Lian
2026-01-21 14:19:03 -05:00
committed by GitHub
parent 8cd75cff9f
commit 8623dd8a72

View File

@@ -50,7 +50,7 @@ jobs:
- name: Update version in VERSION file
run: |
echo "${{ steps.tag.outputs.TAG_NAME }}" | sed -e's/v//g' > VERSION
echo "${{ steps.tag.outputs.TAG_NAME }}" | sed 's/^v//' > VERSION
- name: Build a source dist
run: |