-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged in task/JSMT-150_update_pipelines (pull request #18)
JSMT-150 - update pipelines for release branch Approved-by: Zakhar Listiev
- Loading branch information
Showing
1 changed file
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,7 +89,12 @@ definitions: | |
- npm install -g snyk | ||
# Run Snyk monitor and skip all provided dependencies | ||
- snyk monitor . -- -Dscope=runtime | ||
|
||
- step: &pushToGithub | ||
name: Push changes to Github repo | ||
script: | ||
- git remote add github [email protected]:atlassian-labs/msteams-jira-server-addon.git | ||
- git push -u github ${BITBUCKET_BRANCH} | ||
- git push github --follow-tags | ||
pipelines: | ||
default: | ||
- step: | ||
|
@@ -121,4 +126,22 @@ pipelines: | |
- step: | ||
<<: *buildAndPack | ||
name: Build production package | ||
deployment: Production | ||
deployment: Production | ||
release/*: | ||
- step: | ||
<<: *buildAndPack | ||
name: Build integration package | ||
deployment: Integration | ||
- step: | ||
<<: *buildAndPack | ||
name: Build staging package | ||
deployment: Staging | ||
- step: | ||
<<: *buildAndPack | ||
name: Build production package | ||
deployment: Production | ||
- step: | ||
<<: *createTag | ||
trigger: manual | ||
- step: | ||
<<: *pushToGithub |