Skip to content

Commit

Permalink
Merge pull request #1438 from nos/chore/circleci
Browse files Browse the repository at this point in the history
chore(circleci): update circleci to persist artifacts to storage
  • Loading branch information
DalderupMaurice authored Nov 21, 2021
2 parents 69ddbe9 + 7998d5e commit be1053c
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ jobs:
root: *workspace
paths:
- dist/*.*
- store_artifacts:
path: dist

deploy_linux:
<<: *linux_config
Expand All @@ -118,6 +120,8 @@ jobs:
root: *workspace
paths:
- dist/*.*
- store_artifacts:
path: dist

deploy_mac:
<<: *mac_config
Expand All @@ -128,6 +132,8 @@ jobs:
root: *workspace
paths:
- ./dist/*.*
- store_artifacts:
path: dist

calculate_checksums:
<<: *linux_config
Expand All @@ -148,11 +154,6 @@ workflows:
- unit_tests
deploy:
jobs:
- calculate_checksums:
requires:
- deploy_windows
- deploy_linux
- deploy_mac
- deploy_windows:
filters:
branches:
Expand All @@ -171,3 +172,8 @@ workflows:
ignore: /.*/
tags:
only: /[v][0-9]+(\.[0-9]+)+.*/
- calculate_checksums:
requires:
- deploy_windows
- deploy_linux
- deploy_mac

0 comments on commit be1053c

Please sign in to comment.