Skip to content

Commit

Permalink
Merge pull request #31 from yuzd/dev
Browse files Browse the repository at this point in the history
v7.4.6
  • Loading branch information
yuzd committed Oct 9, 2022
2 parents c076c04 + fb87245 commit 901a038
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 3 deletions.
Binary file modified AntDeploy2022/AntDeployV2/AntDeployWinform.dll
Binary file not shown.
Binary file modified AntDeploy2022/AntDeployV2/en/AntDeployWinform.resources.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion AntDeploy2022/AntDeployV2/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="AntDeployV2.7c9b7525-17b5-4862-91fd-75e80893e476" Version="2.5" Language="en-US" Publisher="yuzd" />
<Identity Id="AntDeployV2.7c9b7525-17b5-4862-91fd-75e80893e476" Version="2.6" Language="en-US" Publisher="yuzd" />
<DisplayName>AntDeployV2</DisplayName>
<Description xml:space="preserve">Tools to deploy applications to remote server(iis,windowsService,docker) support netframwork and dotnetcore,support rollback and increment deploy</Description>
<MoreInfo>https://github.com/yuzd</MoreInfo>
Expand Down
Binary file not shown.
Binary file modified AntDeploy2022/AntDeployV2/zh-Hans/AntDeployWinform.resources.dll
Binary file not shown.
Binary file modified AntDeploy2022/AntDeployV2/zh/AntDeployWinform.resources.dll
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public override void Start()


CopyHelper.RunCommand($"{model.Sudo} docker rmi {uploadImageName}");

CopyHelper.RunCommand($"{model.Sudo} docker rmi {currentImageInfo.Item3}");
if (!rr11)
{
throw new Exception("[upload image] - Fail");
Expand Down
3 changes: 3 additions & 0 deletions AntDeployWinform/Util/SSHClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1216,8 +1216,11 @@ public void DoDockerCommand(string publishFolder, bool isrollBack = false,bool i
else
{
_logger($"[upload image] - Success", LogLevel.Info);

}
_sshClient.RunCommand($"{Sudo} docker rmi {uploadImageName}");
// 删除打包好的镜像
_sshClient.RunCommand($"{Sudo} docker rmi {currentImageInfo.Item3}");
}

try
Expand Down
2 changes: 1 addition & 1 deletion AntDeployWinform/Vsix.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public static class Vsix
{
public const string FORM_NAME = "AntDeploy("+VERSION+")";
public const string VERSION = "7.45";
public const string VERSION = "7.46";
public const string AGENTVERSION = "7.1";
public const string PRODUCT = "yuzd";
public const string PACKAGE = "AntDeploy";
Expand Down

0 comments on commit 901a038

Please sign in to comment.