Skip to content

Commit 9d808b7

Browse files
authored
Merge pull request #262 from bci-oss/260-fix-package-signing-configuration
Fix package signing configuration
2 parents 5f8add3 + 6545d7b commit 9d808b7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/pull_request_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
distribution: 'temurin'
1717
java-version: '17'
1818
- name: Run tests
19-
run: mvn -B clean install
19+
run: mvn -B clean install -Dgpg.skip=true

.github/workflows/release-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
git push origin ${{ env.release_branch_name }}
6868
fi
6969
- name: Run tests and build
70-
run: mvn -B clean install
70+
run: mvn -B clean install -Dgpg.skip=true
7171

7272
# release-build
7373
- name: Create GitHub release

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@
616616
<executions>
617617
<execution>
618618
<id>sign-artifacts</id>
619-
<phase>deploy</phase>
619+
<phase>verify</phase>
620620
<goals>
621621
<goal>sign</goal>
622622
</goals>

0 commit comments

Comments
 (0)