Skip to content

Commit bab271f

Browse files
WIP
Signed-off-by: Thomas Poignant <thomas.poignant@gofeatureflag.org>
1 parent 805740b commit bab271f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/pullrequest.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ jobs:
3535
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
3636

3737
- name: Build with Maven
38-
run: mvn --batch-mode --update-snapshots verify -Dgpg.skip
38+
run: |
39+
if [ ${{ github.event.pull_request.head.repo.full_name }} = ${{ github.repository }} ]; then
40+
mvn --batch-mode --update-snapshots verify
41+
else
42+
mvn --batch-mode --update-snapshots verify -Dgpg.skip
43+
fi
3944

4045
- name: Upload coverage to Codecov
4146
uses: codecov/codecov-action@v2

0 commit comments

Comments
 (0)