We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0f8cdc commit fe51dbeCopy full SHA for fe51dbe
1 file changed
.github/workflows/build-test-package.yml
@@ -56,7 +56,7 @@ jobs:
56
run: |
57
CLEAN_VERSION="${GITHUB_REF##*/}" # Remove 'refs/tags/'
58
CLEAN_VERSION="${CLEAN_VERSION#v}" # Remove leading 'v'
59
- NUMERIC_VERSION=$(echo "$CLEAN_VERSION" | sed 's/[^0-9.]*$//') # Strip any suffix for AssemblyVersion
+ NUMERIC_VERSION=$(echo "$CLEAN_VERSION" | sed 's/[^0-9.].*//') # Strip any suffix for AssemblyVersion
60
echo "CLEAN_VERSION=$CLEAN_VERSION" >> $GITHUB_ENV
61
echo "NUMERIC_VERSION=$NUMERIC_VERSION" >> $GITHUB_ENV
62
0 commit comments