Skip to content
This repository was archived by the owner on Jul 1, 2025. It is now read-only.

Commit 3be114e

Browse files
authored
Merge pull request #24 from daveshepherd/master
Generate package on build
2 parents 847e195 + cebe5e0 commit 3be114e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.circleci/config.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,24 @@ jobs:
1616
- run:
1717
name: unit-tests
1818
command: npm run test:unit
19+
- run:
20+
name: package
21+
command: npm run package
22+
- store_artifacts:
23+
path: instance-terminator.zip
1924
release:
2025
machine: true
2126
steps:
2227
- add_ssh_keys
2328
- checkout
2429
- run:
25-
name : patch-application
30+
name: patch-application
2631
command: |
2732
git config --global user.email "circleci@wealthwizards.com"
2833
git config --global user.name "Circle CI"
2934
npm version patch -m "Release %s [ci skip]"
3035
- deploy:
31-
name : deploy-git-changes
36+
name: deploy-git-changes
3237
command: git push --follow-tags
3338
workflows:
3439
version: 2

0 commit comments

Comments
 (0)