From a17089b4ef49ef68d3448e00bbb058d81bd0d1e2 Mon Sep 17 00:00:00 2001 From: Andrew Kerr Date: Thu, 30 Jan 2020 11:34:39 -0500 Subject: [PATCH] Fix deployment scripts --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6c54e17a7..8e2b88ebc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2674,7 +2674,7 @@ def _build_trident(String name, String ssh_options, Map spec) { label: "Execute release_to_github.py on $ip_address", script: "ssh $ssh_options root@$ip_address '" + "cd $vm_path/go/src2/github.com/netapp/trident;" + - "python $vm_path/tools/utils/github.py " + + "python3 $vm_path/tools/utils/github.py " + "--action create-release " + "--changelog CHANGELOG.md " + "--organization $env.TRIDENT_PUBLIC_GITHUB_ORG " + @@ -2701,7 +2701,7 @@ def _build_trident(String name, String ssh_options, Map spec) { label: "Execute release_to_github.py on $ip_address", script: "ssh $ssh_options root@$ip_address '" + "cd $vm_path/go/src2/github.com/netapp/trident;" + - "python $vm_path/tools/utils/github.py " + + "python3 $vm_path/tools/utils/github.py " + "--action create-release " + "--changelog CHANGELOG.md " + "--organization $env.TRIDENT_PUBLIC_GITHUB_ORG " +