strip only starting 'v' char; e.g don't strip from '.dev'

This commit is contained in:
Wing Lian
2026-01-21 09:31:17 -05:00
parent 729221e9bb
commit 68fc0eeab3

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: |