Skip to content

Commit 3bf44d6

Browse files
fix: pack before publish
1 parent 288d09b commit 3bf44d6

File tree

2 files changed

+19
-27
lines changed

2 files changed

+19
-27
lines changed

.circleci/config.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ workflows:
1616
filters: *filters
1717
- orb-tools/review:
1818
filters: *filters
19-
#
19+
2020
# release dev version of orb, for testing & possible publishing.
2121
# orb will be published as dev:alpha and dev:${CIRCLE_SHA1:0:7}.
2222
- orb-tools/publish:
@@ -27,8 +27,7 @@ workflows:
2727
orb-name: codecov/codecov
2828
pub-type: dev
2929
vcs-type: << pipeline.project.type >>
30-
requires:
31-
[orb-tools/lint, orb-tools/review, orb-tools/pack]
30+
requires: [orb-tools/lint, orb-tools/review, orb-tools/pack]
3231

3332
# trigger an integration workflow to test the
3433
# dev:${CIRCLE_SHA1:0:7} version of your orb

.circleci/test-deploy.yml

+17-24
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
root: .
4343
paths:
4444
- coverage/coverage-final.json
45-
test-codecov-orb-alpine:
45+
test-alpine:
4646
docker:
4747
- image: alpine:latest
4848
steps:
@@ -63,7 +63,7 @@ jobs:
6363
file: coverage/coverage-final.json
6464
flags: version,alpine
6565
version: v0.1.0_8880
66-
test-codecov-orb-linux:
66+
test-linux:
6767
docker:
6868
- image: cimg/base:stable
6969
steps:
@@ -80,7 +80,7 @@ jobs:
8080
file: coverage/coverage-final.json
8181
flags: version,linux
8282
version: v0.1.0_8880
83-
test-codecov-orb-macos:
83+
test-macos:
8484
macos:
8585
xcode: 11.4
8686
steps:
@@ -97,7 +97,7 @@ jobs:
9797
file: coverage/coverage-final.json
9898
flags: version,macos
9999
version: v0.1.0_8880
100-
test-codecov-orb-windows:
100+
test-windows:
101101
executor:
102102
name: win/default
103103
shell: bash.exe
@@ -123,29 +123,25 @@ workflows:
123123
filters: *filters
124124
- test-frontend:
125125
filters: *filters
126-
- test-codecov-orb-alpine:
126+
- test-alpine:
127127
filters: *filters
128-
requires:
129-
- test-backend
130-
- test-frontend
128+
requires: [test-backend, test-frontend]
131129

132-
- test-codecov-orb-linux:
130+
- test-linux:
133131
filters: *filters
134-
requires:
135-
- test-backend
136-
- test-frontend
132+
requires: [test-backend, test-frontend]
137133

138-
- test-codecov-orb-macos:
134+
- test-macos:
139135
filters: *filters
140-
requires:
141-
- test-backend
142-
- test-frontend
136+
requires: [test-backend, test-frontend]
143137

144-
- test-codecov-orb-windows:
138+
- test-windows:
145139
filters: *filters
146-
requires:
147-
- test-backend
148-
- test-frontend
140+
requires: [test-backend, test-frontend]
141+
142+
- orb-tools/pack:
143+
filters: *filters
144+
requires: [test-alpine, test-linux, test-macos, test-windows]
149145

150146
- orb-tools/publish:
151147
circleci-token: ORB_PUBLISH_TOKEN
@@ -159,8 +155,5 @@ workflows:
159155
orb-name: codecov/codecov
160156
pub-type: production
161157
requires:
162-
- test-codecov-orb-alpine
163-
- test-codecov-orb-linux
164-
- test-codecov-orb-macos
165-
- test-codecov-orb-windows
158+
- orb-tools/pack
166159
vcs-type: github

0 commit comments

Comments
 (0)