Skip to content

Commit

Permalink
Merge pull request #39 from circleci/fix-deploys
Browse files Browse the repository at this point in the history
All jobs required by the deploy job must also run for tags
  • Loading branch information
stig authored Mar 22, 2024
2 parents f176c48 + 467c877 commit 0a4277c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
15 changes: 12 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,18 @@ workflows:
version: 2
test_and_publish:
jobs:
- clj-kondo
- docs
- test
- clj-kondo:
filters:
tags:
only: /.*/
- docs:
filters:
tags:
only: /.*/
- test:
filters:
tags:
only: /.*/
- publish:
context: clojars-publish
requires:
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version 0.10.0 (March 22, 2024)
Version 0.10.1 (March 22, 2024)
================================

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

Version 0.10.0 (March 22, 2024)
================================

Not pushed to Clojars because of a bug in the new automatic publishing CI job.


Version 0.8.2 (October 3, 2023)
================================

Expand Down

0 comments on commit 0a4277c

Please sign in to comment.