Skip to content

Commit

Permalink
Remove commented out code.
Browse files Browse the repository at this point in the history
  • Loading branch information
damianh committed Nov 5, 2024
1 parent 1787a3b commit 6fe15f8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflow-gen/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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");
}

Expand All @@ -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}
Expand Down

0 comments on commit 6fe15f8

Please sign in to comment.