Skip to content

Commit

Permalink
Prevents from failing GHA builds in PRs (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
hiwakaba authored Nov 15, 2024
1 parent e5fe154 commit af05521
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,7 @@ jobs:
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- name: Configure GPG Key
run: |
export GPG_TTY=$(tty)
echo -n "$GPG_SIGNING_KEY" | gpg --import --batch
env:
GPG_SIGNING_KEY: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
- name: List of keys on gpg
run: gpg --list-secret-keys --keyid-format LONG

- name: Set environments
run: |
echo "COMMON_MAVEN_OPTS=-Dmaven.compiler.failOnWarning=true -Dmaven.compiler.showDeprecation=true -Dmaven.compiler.verbose=true -Dmaven.compiler.debuglevel=lines,vars,source" >> "$GITHUB_ENV"
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
k2hash-java (1.0.8) stable; urgency=low

* Fixes pom.xml
* Fixes main.yml

-- Hirotaka Wakabayashi <[email protected]> Fri, 15 Nov 2024 18:16:43 +0900

k2hash-java (1.0.7) stable; urgency=low

* Maven Central Repository migration
Expand Down
5 changes: 2 additions & 3 deletions k2hash/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<parent>
<groupId>ax.antpick</groupId>
<artifactId>k2hash-parent</artifactId>
<version>1.0.7</version>
<version>1.0.8</version>
</parent>

<artifactId>k2hash</artifactId>
<packaging>jar</packaging>
<version>1.0.7</version>
<version>1.0.8</version>

<name>k2hash library</name>
<description>An official java driver for k2hash, which is a highly available and scalable distributed KVS library.</description>
Expand Down Expand Up @@ -48,7 +48,6 @@
<!--Note - the version would be inherited-->
<configuration>
<configLocation>${project.parent.basedir}/${checkstyle.configLocation}</configLocation>
<suppressionsFile>${project.parent.basedir}/${checkstyle.suppressionsLocation}</suppressionsFile>
</configuration>
</plugin>
</plugins>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<packaging>pom</packaging>
<artifactId>k2hash-parent</artifactId>
<name>k2hash</name>
<version>1.0.7</version>
<version>1.0.8</version>
<description>An official java driver for k2hash, which is a highly available and scalable distributed KVS library.</description>
<url>https://github.com/yahoojapan/k2hash_java</url>

Expand Down Expand Up @@ -169,7 +169,7 @@
<goals>
<goal>site</goal>
</goals>
<phase>sitey</phase>
<phase>site</phase>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit af05521

Please sign in to comment.