Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevents from failing GHA builds in PRs #23

Merged
merged 6 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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