Skip to content

Commit 467c877

Browse files
committedMar 22, 2024
All jobs required by deploy job must also run for tags
It is not sufficient to make the publish job run for tags, we need to make all its required jobs run for tags too.
1 parent f176c48 commit 467c877

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed
 

‎.circleci/config.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,18 @@ workflows:
3939
version: 2
4040
test_and_publish:
4141
jobs:
42-
- clj-kondo
43-
- docs
44-
- test
42+
- clj-kondo:
43+
filters:
44+
tags:
45+
only: /.*/
46+
- docs:
47+
filters:
48+
tags:
49+
only: /.*/
50+
- test:
51+
filters:
52+
tags:
53+
only: /.*/
4554
- publish:
4655
context: clojars-publish
4756
requires:

‎CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Version 0.10.0 (March 22, 2024)
1+
Version 0.10.1 (March 22, 2024)
22
================================
33

44
* [#25](https://github.com/circleci/analytics-clj/pull/25): Update CODEOWNERS with more relevant team
@@ -10,6 +10,12 @@ Version 0.10.0 (March 22, 2024)
1010
* [#27](https://github.com/circleci/analytics-clj/pull/27): Bump transitive dependency okio-java and move it to managed-dependencies
1111
* [#34](https://github.com/circleci/analytics-clj/pull/34): Bump `com.segment.analytics.java` dependency
1212

13+
Version 0.10.0 (March 22, 2024)
14+
================================
15+
16+
Not pushed to Clojars because of a bug in the new automatic publishing CI job.
17+
18+
1319
Version 0.8.2 (October 3, 2023)
1420
================================
1521

0 commit comments

Comments
 (0)
Failed to load comments.