Skip to content

Commit 23a9e32

Browse files
committed
Fix github tag action.
1 parent a10d430 commit 23a9e32

4 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish
1+
name: Build
22

33
on:
44
push:

.github/workflows/build_and_test.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Build & Test
22

33
on:
4-
push:
5-
branches:
6-
- master
74
pull_request:
85
branches:
96
- master

.github/workflows/codeql.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: "CodeQL Advanced"
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
tags:
6+
- 'v*'
67
pull_request:
78
branches: [ "master" ]
89
schedule:

.github/workflows/tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
default_bump: patch
1818
tag_prefix: v
1919
custom_release_rules: |
20-
"patch:patch,minor:minor,major:major"
20+
"fix:patch:Bug Fixes,patch:patch:Changes,feature:minor:Features,change:minor:Changes,minor:minor:Changes,breaking:major:Breaking Changes,major:major:Major Changes"
2121
- name: Create a GitHub release
2222
uses: ncipollo/release-action@v1
2323
with:

0 commit comments

Comments
 (0)