Skip to content

Commit

Permalink
chore: skip dependency check in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mlz11 committed Mar 14, 2024
1 parent 44a99d2 commit f1ed00b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/spring-search-deploy.yml
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ jobs:
server-password: MVN_CENTRAL_PASSWORD

- name: Release to Maven repo
run: mvn -Dgpg.keyname="${{ secrets.GPG_KEY_NAME }}" -Dgpg.passphrase="${{ secrets.MAVEN_SIGNING_KEY_PASSPHRASE }}" -Drevision="${{ env.TAG_NAME }}" -DnvdApiKey="${{ secrets.NVD_API_KEY }}" deploy
run: mvn -Dgpg.keyname="${{ secrets.GPG_KEY_NAME }}" -Dgpg.passphrase="${{ secrets.MAVEN_SIGNING_KEY_PASSPHRASE }}" -Drevision="${{ env.TAG_NAME }}" -Ddependency-check.skip=true deploy
env:
MVN_CENTRAL_USERNAME: ${{ secrets.MVN_CENTRAL_USERNAME }}
MVN_CENTRAL_PASSWORD: ${{ secrets.MVN_CENTRAL_PASSWORD }}

0 comments on commit f1ed00b

Please sign in to comment.