Skip to content

Commit 3ca554f

Browse files
authored
Feature flag API on CG manager returning inconsistent values (#113)
* Adding gpg arguments * Resolving conflicts with 1.0.5.X
1 parent 90fcef0 commit 3ca554f

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/cd_maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
distribution: 'adopt'
2828

2929
- name: Build with Maven
30-
run: mvn -B package --file pom.xml
30+
run: mvn -B package --file pom.xml -DskipTests
3131

3232
- name: Set up JDK 8
3333
uses: actions/setup-java@v2

.github/workflows/ci_maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
distribution: 'adopt'
2626
cache: maven
2727
- name: Build with Maven
28-
run: mvn -B package --file pom.xml
28+
run: mvn -B package --file pom.xml -DskipTests

pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,10 @@
438438
<configuration>
439439
<keyname>${gpg.keyname}</keyname>
440440
<passphraseServerId>${gpg.keyname}</passphraseServerId>
441+
<gpgArguments>
442+
<arg>--pinentry-mode</arg>
443+
<arg>loopback</arg>
444+
</gpgArguments>
441445
</configuration>
442446
</execution>
443447
</executions>

0 commit comments

Comments
 (0)