Skip to content

Commit 8784537

Browse files
committed
feat: Add build job and publish job to workflow
1 parent a0ae480 commit 8784537

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.circleci/config.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,22 @@ jobs:
5454
# fallback to using the latest cache if no exact match is found
5555
- v1-dependencies-
5656
- run:
57-
name: Alias deployment instance
58-
command: npm run alias
57+
name: Publish Package
58+
command: npm run semantic-release
5959

6060
workflows:
6161
version: 2
6262
test:
6363
jobs:
6464
- test-job
65+
- build-job
66+
# filters:
67+
# branches:
68+
# only:
69+
# - master
70+
# - beta
71+
- publish-job:
72+
requires:
73+
- test-job
74+
- build-job
6575

0 commit comments

Comments
 (0)