Skip to content

Commit 15525d6

Browse files
committed
Fix workflow
1 parent b3b5534 commit 15525d6

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,11 @@ jobs:
3737
# Store the version, stripping any v-prefix
3838
- name: Write release version
3939
run: |
40+
TAG=${{ github.ref_name }}
4041
{
41-
echo "TAG=${{ github.ref_name }}"
42-
echo "VERSION=${TAG#v}"
42+
echo "TAG=$TAG"
4343
echo "COMPOSER_VERSION=$(composer config version)"
44+
echo "VERSION=${TAG#v}"
4445
} >> "$GITHUB_ENV"
4546
4647
- name: Validate composer.json and composer.lock

0 commit comments

Comments
 (0)