We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfa06ed commit b558eb4Copy full SHA for b558eb4
1 file changed
.github/workflows/regression.yaml
@@ -4,7 +4,7 @@ on:
4
push:
5
branches: ["main"]
6
tags:
7
- - '*'
+ - 'v*'
8
pull_request:
9
10
@@ -33,6 +33,8 @@ jobs:
33
github-token: ${{ secrets.GITHUB_TOKEN }}
34
35
- name: Run tests
36
+ # don't run tests for tags
37
+ if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
38
run: |
39
pushd tests
40
for dir in `find . -mindepth 1 -maxdepth 1 -type d`; do
@@ -55,7 +57,7 @@ jobs:
55
57
with:
56
58
draft: false
59
prerelease: false
- release_name: ${{ github.ref }}
60
+ release_name: Release ${{ github.ref }}
61
tag_name: ${{ github.ref }}
62
body_path: CHANGELOG.md
63
env:
0 commit comments