diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index d563d8c97c..6f4a8cdab8 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -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 } ```