Skip to content

Commit

Permalink
Skip GPG signing for unit testing and GitHub release
Browse files Browse the repository at this point in the history
  • Loading branch information
BjoernLoetters committed Feb 1, 2025
1 parent adfee43 commit 6a8394b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
cache: 'maven'

- name: Unit Test
run: mvn -pl core clean test
run: mvn -pl core clean test -Dgpg.skip=true

- name: Build JAR-File
run: mvn -pl core clean package -DskipTests
run: mvn -pl core clean package -DskipTests -Dgpg.skip=true

- name: Generate Sources JAR
run: mvn -pl core clean source:jar -DskipTests
run: mvn -pl core clean source:jar -DskipTests -Dgpg.skip=true

- name: Upload Release
uses: marvinpinto/action-automatic-releases@latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
cache: 'maven'

- name: Build with Maven
run: mvn clean install
run: mvn clean install -Dgpg.skip=true

- name: Run Unit Tests
run: mvn test
run: mvn clean test -Dgpg.skip=true

0 comments on commit 6a8394b

Please sign in to comment.