Skip to content

Commit

Permalink
Remove upload step from Jenkins pipeline (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesper Lindstrøm Nielsen authored Jul 6, 2021
1 parent 7390344 commit cb2f8a9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 20 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ coverage

# nyc test coverage
.nyc_output
junit.yaml

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
Expand Down
20 changes: 0 additions & 20 deletions aws.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,26 +75,6 @@ pipeline {
}
}

stage('upload') {
when {
anyOf {
branch 'master'
branch pattern: "release-v\\d+.\\d+", comparator: 'REGEXP'
tag 'v*'
}
}

steps {
dir('vscode') {
withCredentials([[$class: 'FileBinding', credentialsId: 'gcloud-service-auth', variable: 'GOOGLE_APPLICATION_CREDENTIALS']]) {
sh 'gcloud auth activate-service-account --key-file=$GOOGLE_APPLICATION_CREDENTIALS'
sh 'gcloud config set project infrastructure-220307'
sh "FILEEXT=vsix toitarchive toit-${NIGHTLY_VERSION}.vsix toit-archive toit-vscode $BUILD_VERSION"
}
}
}
}

stage("publish") {
when {
anyOf {
Expand Down

0 comments on commit cb2f8a9

Please sign in to comment.