We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a6eb7d commit c0e3625Copy full SHA for c0e3625
.github/workflows/git-release.yml
@@ -3,7 +3,7 @@ name: Git Release
3
on:
4
push:
5
tags:
6
- - "v[0-9]+.[0-100]+.[0-9]+"
+ - "v[0-9]+.[0-9]+.[0-9]+"
7
workflow_dispatch:
8
9
jobs:
.github/workflows/preview-and-release.yml
@@ -9,6 +9,8 @@ on:
- 'LICENSE'
10
- 'THIRD PARTY NOTICES'
11
- '*.md'
12
+ tags:
13
14
15
16
env:
@@ -49,7 +51,7 @@ jobs:
49
51
run: ./gradlew $PREVIEW_TASK
50
52
53
maven_Release:
- if: ${{ github.ref == 'refs/heads/dev' }}
54
+ if: startsWith(github.ref, 'refs/tags/')
55
environment:
56
name: maven_central_release
57
runs-on: ubuntu-latest
0 commit comments