Skip to content

Commit

Permalink
update pipeline for deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Nov 11, 2020
1 parent 44f88b5 commit dc5b046
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,9 @@ jobs:
GPG_KEY_BASE64: ${{ secrets.GPG_KEY_BASE64 }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: ./gpg-setup.sh
- name: Deploy to OSS Sonatype
env:
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
# mvn -Prelease source:jar javadoc:jar deploy -Dgpg.passphrase=thephrase
run: mvn -B -Prelease source:jar javadoc:jar deploy --file pom.xml -s settings-template.xml -Dgpg.passphrase=${{ secrets.SONATYPE_PASSWORD }}

45 changes: 45 additions & 0 deletions settings-template.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
<!--
enabled Whether to use this repository for downloading this type
of artifact. updatePolicy The frequency for downloading updates - can be
"always", "daily" (default), "interval:XXX" (in minutes) or "never" (only
if it doesn't exist locally). checksumPolicy What to do when verification
of an artifact checksum fails - warn, fail, etc. Valid values are "fail"
or "warn".
-->
<servers>

<server>
<id>sonatype-server</id>
<username>bsorrentino</username>
<password>${env.SONATYPE_PASSWORD}</password>
</server>

</servers>

<profiles>

<profile>
<id>sonatype</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>

<properties>
<release.repo.id>sonatype-server</release.repo.id>
<release.repo.url>https://oss.sonatype.org/service/local/staging/deploy/maven2</release.repo.url>
<snapshot.repo.id>sonatype-server</snapshot.repo.id>
<snapshot.repo.url>https://oss.sonatype.org/content/repositories/snapshots</snapshot.repo.url>
<group.repo.url>http://oss.sonatype.org/content/groups/public</group.repo.url>
</properties>

</profile>

</profiles>

<proxies>
</proxies>

</settings>

0 comments on commit dc5b046

Please sign in to comment.