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 563cb52 commit 7a6a9a5Copy full SHA for 7a6a9a5
1 file changed
.github/workflows/release.yml
@@ -3,16 +3,12 @@ name: Release
3
permissions:
4
contents: write
5
6
-on:
7
- push:
8
- tags:
9
- - [0-9]+.*
10
-
11
jobs:
12
13
build:
14
name: Build binary file on ${{ matrix.os }}
15
runs-on: ${{ matrix.os }}
+ if: startsWith(github.ref, 'refs/tags/') && matches(github.ref_name, '^[0-9]+\\.[0-9]+\\.[0-9]+$')
16
strategy:
17
matrix:
18
os: [ macos-latest, windows-latest, ubuntu-latest ]
0 commit comments