diff --git a/.github/workflow-gen/Program.cs b/.github/workflow-gen/Program.cs index a9a937f2..b28da4cc 100644 --- a/.github/workflow-gen/Program.cs +++ b/.github/workflow-gen/Program.cs @@ -202,7 +202,6 @@ public static void StepInstallCACerts(this Job job) => job.Step() .Name("Install Sectigo CodeSiging CA certificates") .WorkingDirectory(".github/workflows") - //.IfRefMain() .Run(""" sudo apt-get update sudo apt-get install -y ca-certificates @@ -221,7 +220,6 @@ public static void StepPack(this Job job, string project) var path = $"src/{project}"; job.Step() .Name($"Pack {project}") - //.IfRefMain() .Run($"dotnet pack -c Release {path} -o artifacts"); } @@ -236,7 +234,6 @@ public static void StepSign(this Job job) "--azure-key-vault-certificate CodeSigning"; job.Step() .Name("Sign packages") - //.IfRefMain() .Run($""" for file in artifacts/*.nupkg; do dotnet NuGetKeyVaultSignTool sign "$file" {flags}