Skip to content
This repository was archived by the owner on Nov 3, 2021. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docker/bin/deploy-npm
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
#!/bin/sh -xe

###
# Deploy to NPM
#
# The whole deployment process is as following
# 1. Build project which compiles the code and type definitions
# 2. `npm version` which will create a new tag for deployment
# 3. `npm publish` which will push files to NPM and publish a new version
# 4. Push the new tag to GitHub
# 5. Update the release version variable in Jenkinsfile if it is different than the default version
# 6. Push new changes to develop
###

yarn build

git config user.email "continuous.integration@intellihr.com.au"
Expand Down