diff --git a/.github/workflows/spring-search-deploy.yml b/.github/workflows/spring-search-deploy.yml index 9a5c61b..03b049d 100644 --- a/.github/workflows/spring-search-deploy.yml +++ b/.github/workflows/spring-search-deploy.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.merge_commit_sha }} - fetch-depth: '0' + fetch-depth: "0" - name: Import GPG signing key uses: crazy-max/ghaction-import-gpg@v6 @@ -31,15 +31,15 @@ jobs: - name: Install JDK uses: actions/setup-java@v4 with: - distribution: 'temurin' - java-version: '17' - cache: 'maven' + distribution: "temurin" + java-version: "17" + cache: "maven" server-id: maven-central-release server-username: MVN_CENTRAL_USERNAME 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 }}" -DnvdApiKey="${{ secrets.NVD_API_KEY }}" deploy env: MVN_CENTRAL_USERNAME: ${{ secrets.MVN_CENTRAL_USERNAME }} MVN_CENTRAL_PASSWORD: ${{ secrets.MVN_CENTRAL_PASSWORD }}