We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 719065b commit 5b2e419Copy full SHA for 5b2e419
.github/workflows/release.yml
@@ -23,7 +23,7 @@ jobs:
23
uses: actions/checkout@v4
24
- name: Get the release version from the tag
25
if: env.VERSION == ''
26
- run: echo "VERSION=$(echo ${{ github.ref_name }}" | sed s/v\(.*\)-.*/\1/) >> $GITHUB_ENV
+ run: echo "VERSION=$(echo ${{ github.ref_name }} | sed 's/v\(.*\)-.*/\1/')" >> $GITHUB_ENV
27
- name: Show the version
28
run: |
29
echo "version is: $VERSION"
0 commit comments