Skip to content

Commit 6dc3374

Browse files
committed
Adds a version filter for release tags to perform the publishing
1 parent 9e4fe75 commit 6dc3374

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.circleci/config.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,16 @@ workflows:
167167
- go_lint
168168
- build_and_test_linux_cgo_bindings:
169169
run_leak_detector: false
170-
- publish_linux_staticlib
170+
- publish_linux_staticlib:
171+
filters:
172+
tags:
173+
only: /^v.+$/
174+
# only: /^v\d+\.\d+\.\d+(-rc\d+)?$/
171175
- build_darwin_cgo_bindings
172-
- publish_darwin_staticlib
176+
- publish_darwin_staticlib:
177+
filters:
178+
tags:
179+
only: /^v.+$/
173180

174181
commands:
175182
prepare:

0 commit comments

Comments
 (0)