Skip to content

Commit

Permalink
Merge pull request #28 from iadvize/NO-TICKET-fix-releases
Browse files Browse the repository at this point in the history
fix(CI): Fix uploading after a release
  • Loading branch information
DavidBonnemaison authored May 12, 2023
2 parents 6fcc9e8 + 5d6b8ec commit 8f21d44
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8f21d44

Please sign in to comment.