Skip to content

Commit 6545d7b

Browse files
committed
Skip GPG signing in non-release builds
1 parent 1b9f981 commit 6545d7b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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

0 commit comments

Comments
 (0)