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 14efd9b commit a717592Copy full SHA for a717592
.github/workflows/on_tag_release.yaml
@@ -2,7 +2,7 @@ on:
2
push:
3
# Sequence of patterns matched against refs/tags
4
tags:
5
- - 'v[0-9]+.[0-9]+.[0-9]+' # Push events to matching v*, i.e. v1.0, v20.15.10
+ - '[0-9]+.[0-9]+.[0-9]+' # Push events to matching v*, i.e. v1.0, v20.15.10
6
7
name: Create Release
8
@@ -11,7 +11,7 @@ jobs:
11
12
runs-on: ubuntu-latest
13
steps:
14
- - run: echo "version=$(echo ${{ github.ref }} | sed 's|refs/tags/v||')" >> "$GITHUB_ENV"
+ - run: echo "version=$(echo ${{ github.ref }} | sed 's|refs/tags/||')" >> "$GITHUB_ENV"
15
- name: Checkout code
16
uses: actions/checkout@master
17
- name: Create Release
0 commit comments