feature/MAPG-228-deploy-signed-and-verified-tags-only #22

Merged
bence merged 2 commits from feature/MAPG-228-deploy-signed-and-verified-tags-only into develop 2021-04-25 15:16:47 +02:00
Showing only changes of commit 9d1fc8b60c - Show all commits

View File

@ -77,7 +77,7 @@ def isTagVerified(tag):
return process.returncode == 0 return process.returncode == 0
def updateRepoFromRemote(): def updateRepoFromRemote():
subprocess.call(["git", "fetch", "origin", "--prune"], cwd=REPO) subprocess.call(["git", "fetch", "origin", "--prune", "--prune-tags"], cwd=REPO)
def checkoutWorktree(worktreePath, ref): def checkoutWorktree(worktreePath, ref):
subprocess.call(["git", "checkout", "-f", ref], cwd=worktreePath) subprocess.call(["git", "checkout", "-f", ref], cwd=worktreePath)