Skip to content

Commit a717592

Browse files
author
André Böni
committed
version without v prefix
1 parent 14efd9b commit a717592

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/on_tag_release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
push:
33
# Sequence of patterns matched against refs/tags
44
tags:
5-
- 'v[0-9]+.[0-9]+.[0-9]+' # Push events to matching v*, i.e. v1.0, v20.15.10
5+
- '[0-9]+.[0-9]+.[0-9]+' # Push events to matching v*, i.e. v1.0, v20.15.10
66

77
name: Create Release
88

@@ -11,7 +11,7 @@ jobs:
1111
name: Create Release
1212
runs-on: ubuntu-latest
1313
steps:
14-
- run: echo "version=$(echo ${{ github.ref }} | sed 's|refs/tags/v||')" >> "$GITHUB_ENV"
14+
- run: echo "version=$(echo ${{ github.ref }} | sed 's|refs/tags/||')" >> "$GITHUB_ENV"
1515
- name: Checkout code
1616
uses: actions/checkout@master
1717
- name: Create Release

0 commit comments

Comments
 (0)