actions debugging

This commit is contained in:
Jonathan Shook
2020-03-10 16:02:33 -05:00
parent 0e7e58f49c
commit 05024ec7f1
2 changed files with 94 additions and 0 deletions

29
release.xml Normal file
View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>gpg</gpg.executable>
<!--<gpg.keyname>${env.GPG_KEY_NAME}</gpg.keyname>-->
<!--<gpg.passphrase>${env.gpgpass}</gpg.passphrase>-->
<gpg.keyname>${env.GITHUB_GPG_KEY_ID}</gpg.keyname>
</properties>
</profile>
</profiles>
<servers>
<server>
<id>${env.MAVEN_REPO_SERVER_ID}</id>
<username>${env.MAVEN_REPO_SERVER_USERNAME}</username>
<password>${env.MAVEN_REPO_SERVER_PASSWORD}</password>
</server>
</servers>
</settings>