Skip to content

Commit

Permalink
🔧 gpg skip on local and bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
nilwurtz committed Apr 18, 2023
1 parent 98d349a commit 044245e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Publish package
working-directory: wiremock-graphql-extension
run: mvn --batch-mode deploy
run: mvn --batch-mode deploy -Dgpg.skip=false
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_USER_PASSWORD: ${{ secrets.MAVEN_USER_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion e2e/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<artifactId>wiremock-graphql-extension</artifactId>
<groupId>io.github.nilwurtz</groupId>
<version>0.1.0</version>
<version>0.1.1</version>
</dependency>
<dependency>
<groupId>com.thoughtworks.gauge</groupId>
Expand Down
7 changes: 5 additions & 2 deletions wiremock-graphql-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<artifactId>wiremock-graphql-extension</artifactId>
<groupId>io.github.nilwurtz</groupId>
<version>0.1.0</version>
<version>0.1.1</version>
<packaging>jar</packaging>

<name>wiremock-graphql-extension</name>
Expand All @@ -15,6 +15,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kotlin.code.style>official</kotlin.code.style>
<kotlin.compiler.jvmTarget>17</kotlin.compiler.jvmTarget>
<gpg.skip>true</gpg.skip>
</properties>

<repositories>
Expand Down Expand Up @@ -112,19 +113,21 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<!-- To make reference to the passphrase on settings.xml instead of GUI dialog -->
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
<skip>${gpg.skip}</skip>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 044245e

Please sign in to comment.