We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05a394c commit 01cd9a7Copy full SHA for 01cd9a7
.circleci/config.yml
@@ -25,6 +25,15 @@ jobs:
25
- run:
26
name: Jest
27
command: yarn test
28
+ release-canary:
29
+ executor: rn/linux_js
30
+ steps:
31
+ - attach_workspace:
32
+ at: .
33
+ - rn/yarn_install
34
+ - run:
35
+ name: Publish a canary release to NPM
36
+ command: yarn release-canary
37
release:
38
executor: rn/linux_js
39
steps:
@@ -43,6 +52,13 @@ workflows:
43
52
- analyze:
44
53
requires:
45
54
- checkout_code
55
+ - release-canary:
56
+ requires:
57
+ - analyze
58
+ filters:
59
+ ignore: master
46
60
- release:
47
61
48
62
- analyze
63
64
+ only: master
0 commit comments