From 9622fd5b8461ee6b393535f1228567d0630bfe78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 17 May 2018 09:27:51 +0200 Subject: [PATCH] remove git tag steps that seem pointless I really don't see what these are for so I'm just gonna drop them --- Jenkinsfile.nightly_fastlane | 3 --- 1 file changed, 3 deletions(-) diff --git a/Jenkinsfile.nightly_fastlane b/Jenkinsfile.nightly_fastlane index 2cd66d46b4..928eba3b75 100644 --- a/Jenkinsfile.nightly_fastlane +++ b/Jenkinsfile.nightly_fastlane @@ -34,7 +34,6 @@ node ('macos1'){ sh 'git fetch --tags' latest_tag = sh(returnStdout: true, script: 'git describe --tags `git rev-list --tags=release --max-count=1`').trim() - sh 'git tag -d ' + latest_tag sh 'rm -rf node_modules' sh 'cp .env.nightly .env' sh 'lein deps' @@ -58,8 +57,6 @@ node ('macos1'){ stage('Build (iOS)') { withCredentials([string(credentialsId: 'jenkins_pass', variable: 'password')]) { - sh ('git tag -d ' + latest_tag + ' || exit 0') - sh ('git tag ' + latest_tag) def build_no = sh(returnStdout: true, script: 'git rev-list --count HEAD').trim() sh ('plutil -replace CFBundleShortVersionString -string ' + latest_tag + ' ios/StatusIm/Info.plist') sh ('plutil -replace CFBundleVersion -string ' + build_no + ' ios/StatusIm/Info.plist')