diff --git a/Jenkinsfile b/Jenkinsfile index bcf1e3e45..5d97f7120 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,9 +27,6 @@ node('node') { /* This should only deploy to staging if the branch is master */ stage('Deploy') { sh 'make deploy' - for (int i = 1; i < 60; i++) { - sh "./scripts/deploy.staging.sh storage-node-${i} storjlabs/storj-storage-node:${commit_id}" - } echo "Current build result: ${currentBuild.result}" } } diff --git a/Makefile b/Makefile index 40ddc6768..84cbf0d8c 100644 --- a/Makefile +++ b/Makefile @@ -150,7 +150,7 @@ install-deps: .PHONY: deploy deploy: - ./scripts/deploy.staging.sh satellite storjlabs/storj-satellite:${TAG} + ./scripts/deploy.staging.sh satellite storjlabs/satellite:${TAG} for i in $(shell seq 1 60); do \ ./scripts/deploy.staging.sh storage-node-$$i storjlabs/storage-node:${TAG}; \ done