From 5d6b8ec68e58db3832eb91b799b93af04cbd0514 Mon Sep 17 00:00:00 2001 From: David Bonnemaison Date: Fri, 12 May 2023 15:46:10 +0200 Subject: [PATCH] fix(CI): Fix uploading after a release --- .circleci/config.yml | 19 ++++++++++++++++--- CHANGELOG.md | 5 +++++ 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 65ae96b..8221cae 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -101,12 +101,12 @@ jobs: workflows: version: 2 - build-test-upload: + build-test: jobs: - install: context: org-global filters: - <<: *filters-all-branches-and-tags + <<: *filters-all-branches - test: context: org-global @@ -127,7 +127,20 @@ workflows: requires: - install filters: - <<: *filters-all-branches-and-tags + <<: *filters-all-branches + upload: + jobs: + - install: + context: org-global + filters: + <<: *filters-only-tag + + - build: + context: org-global + requires: + - install + filters: + <<: *filters-only-tag - upload-s3: context: org-global diff --git a/CHANGELOG.md b/CHANGELOG.md index 66f7a9d..5810e9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.1] + +### Changed + +- Fix uploading after a release ## [1.3.0] ### Changed