Skip to content

Commit 8ef6794

Browse files
committed
Test update
1 parent 6dc3374 commit 8ef6794

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.circleci/config.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,11 @@ jobs:
7373
steps:
7474
- configure_environment_variables
7575
- prepare
76-
- publish_release
76+
- publish_release:
77+
filters:
78+
tags:
79+
only: /^v.+$/
80+
# only: /^v\d+\.\d+\.\d+(-rc\d+)?$/
7781
publish_darwin_staticlib:
7882
macos:
7983
xcode: "12.5.1"
@@ -92,7 +96,11 @@ jobs:
9296
- run: cd rust && rustup default $(cat rust-toolchain)
9397
- run: cd rust && cargo fetch
9498
- run: cd rust && cargo install cargo-lipo
95-
- publish_darwin_release
99+
- publish_darwin_release:
100+
filters:
101+
tags:
102+
only: /^v.+$/
103+
# only: /^v\d+\.\d+\.\d+(-rc\d+)?$/
96104
cargo_fetch:
97105
executor: rust
98106
working_directory: /mnt/crate
@@ -167,16 +175,9 @@ workflows:
167175
- go_lint
168176
- build_and_test_linux_cgo_bindings:
169177
run_leak_detector: false
170-
- publish_linux_staticlib:
171-
filters:
172-
tags:
173-
only: /^v.+$/
174-
# only: /^v\d+\.\d+\.\d+(-rc\d+)?$/
178+
- publish_linux_staticlib
175179
- build_darwin_cgo_bindings
176-
- publish_darwin_staticlib:
177-
filters:
178-
tags:
179-
only: /^v.+$/
180+
- publish_darwin_staticlib
180181

181182
commands:
182183
prepare:

0 commit comments

Comments
 (0)