Skip to content

Commit

Permalink
Implements signing
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Henry authored and Sean Henry committed Jul 6, 2022
1 parent 4007440 commit 554f799
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ MockGenerator.zip
MockGenerator.jar
MockGenerator/target/*
MockGenerator/test_results
/signing

## Various settings
*.pbxuser
Expand Down
23 changes: 23 additions & 0 deletions .idea/runConfigurations/Build_Plugin.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ tasks {
}

patchPluginXml {
changeNotes.set("Adds support for AppCode 2021.3")
changeNotes.set("Adds support for AppCode 2022.1")
sinceBuild.set("221")
}

signPlugin {
certificateChain.set(System.getenv("CERTIFICATE_CHAIN"))
privateKey.set(System.getenv("PRIVATE_KEY"))
certificateChain.set(File("./signing/chain.crt").readText())
privateKey.set(File("./signing/private.pem").readText())
password.set(System.getenv("PRIVATE_KEY_PASSWORD"))
}

Expand Down

0 comments on commit 554f799

Please sign in to comment.