mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Ensure prod beta build is created when merging to master (#16557)
* Ensure prod beta build is created when merging to master * Fix: remove negation * Update .circleci/config.yml Co-authored-by: Mark Stacey <markjstacey@gmail.com> Co-authored-by: Mark Stacey <markjstacey@gmail.com>
This commit is contained in:
parent
2966b9f665
commit
27e8f0ffaa
@ -283,9 +283,25 @@ jobs:
|
|||||||
- checkout
|
- checkout
|
||||||
- attach_workspace:
|
- attach_workspace:
|
||||||
at: .
|
at: .
|
||||||
- run:
|
- when:
|
||||||
name: build:dist
|
condition:
|
||||||
command: yarn build --build-type beta dist
|
not:
|
||||||
|
matches:
|
||||||
|
pattern: /^master$/
|
||||||
|
value: << pipeline.git.branch >>
|
||||||
|
steps:
|
||||||
|
- run:
|
||||||
|
name: build:dist
|
||||||
|
command: yarn build --build-type beta dist
|
||||||
|
- when:
|
||||||
|
condition:
|
||||||
|
matches:
|
||||||
|
pattern: /^master$/
|
||||||
|
value: << pipeline.git.branch >>
|
||||||
|
steps:
|
||||||
|
- run:
|
||||||
|
name: build:prod
|
||||||
|
command: yarn build --build-type beta prod
|
||||||
- run:
|
- run:
|
||||||
name: build:debug
|
name: build:debug
|
||||||
command: find dist/ -type f -exec md5sum {} \; | sort -k 2
|
command: find dist/ -type f -exec md5sum {} \; | sort -k 2
|
||||||
|
Loading…
Reference in New Issue
Block a user