Update notes about forks with code signing secrets

This commit is contained in:
Jordan Dominion
2023-07-02 18:53:19 -04:00
parent cf8f20fd11
commit 4ed133323a
+5
View File
@@ -74,6 +74,8 @@ If you don't plan on deploying TGS, the following secrets can be omitted:
- Secret `DOCKER_USERNAME`: Login username for Docker image push.
- Secret `DOCKER_PASSWORD`: Login password for Docker image push.
- Secret `NUGET_API_KEY`: Nuget.org API Key for client libraries push.
- Secret `CODE_SIGNING_BASE64`: Base64 string of a .pfx file containing a Windows code-signing certificate.
- Secret `CODE_SIGNING_PASSWORD`: Password for importing the above .pfx.
### Know your Code
@@ -150,10 +152,13 @@ void Hello()
{
if (!thing1)
return;
if (thing2)
return;
if (thing3 != 30)
return;
do stuff
}
```