Skip to content

Commit

Permalink
Merge pull request #12 from telekom/maven_central
Browse files Browse the repository at this point in the history
try jar creation without signing
  • Loading branch information
Anrufliste authored May 19, 2023
2 parents eadda67 + d3c42fe commit c34b0f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: "${{ github.workspace }}/target/*.jar"
artifacts: "${{ github.workspace }}/target/*.jar"
- name: Publish to the Maven Central Repository
run: |
mvn \
Expand Down
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<artifactId>normalizer</artifactId>
<name>Phonenumber Normalizer</name>
<description>Library to work with phonenumbers, especially to fix googles PhoneLib ignoring German Landline specifics.</description>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.1-SNAPSHOT</version>
<packaging>jar</packaging>
<url>https://github.com/telekom/phonenumber-normalizer</url>

Expand Down Expand Up @@ -292,6 +292,7 @@
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand All @@ -305,13 +306,14 @@
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
#<arg>-#-pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
-->
</plugins>

<pluginManagement>
Expand Down

0 comments on commit c34b0f4

Please sign in to comment.