From 16ae0e63ef716c67474da9e1af2747a6a2807294 Mon Sep 17 00:00:00 2001 From: Roberto Perez Alcolea Date: Mon, 8 Jan 2024 17:54:26 -0800 Subject: [PATCH] Nebula-plugin-plugin 20.11.0 --- .github/workflows/nebula.yml | 13 +++++++++++++ build.gradle | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nebula.yml b/.github/workflows/nebula.yml index 99a4b42..cd77955 100644 --- a/.github/workflows/nebula.yml +++ b/.github/workflows/nebula.yml @@ -26,6 +26,10 @@ jobs: name: Gradle Build without Publish steps: - uses: actions/checkout@v1 + - name: Setup git user + run: | + git config --global user.name "Nebula Plugin Maintainers" + git config --global user.email "nebula-plugins-oss@netflix.com" - name: Set up JDK 8 uses: actions/setup-java@v2 with: @@ -66,6 +70,10 @@ jobs: NETFLIX_OSS_SONATYPE_PASSWORD: ${{ secrets.ORG_SONATYPE_PASSWORD }} steps: - uses: actions/checkout@v1 + - name: Setup git user + run: | + git config --global user.name "Nebula Plugin Maintainers" + git config --global user.email "nebula-plugins-oss@netflix.com" - name: Setup jdk 8 uses: actions/setup-java@v1 with: @@ -103,6 +111,10 @@ jobs: NETFLIX_OSS_REPO_PASSWORD: ${{ secrets.ORG_NETFLIXOSS_PASSWORD }} steps: - uses: actions/checkout@v1 + - name: Setup git user + run: | + git config --global user.name "Nebula Plugin Maintainers" + git config --global user.email "nebula-plugins-oss@netflix.com" - name: Setup jdk 8 uses: actions/setup-java@v1 with: @@ -131,3 +143,4 @@ jobs: startsWith(github.ref, 'refs/tags/v') && (!contains(github.ref, '-rc.')) run: ./gradlew --info --stacktrace -Dgradle.publish.key=${{ secrets.gradlePublishKey }} -Dgradle.publish.secret=${{ secrets.gradlePublishSecret }} -Prelease.useLastTag=true final + diff --git a/build.gradle b/build.gradle index 9d588c9..8b66b00 100644 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,7 @@ import org.gradle.api.tasks.testing.Test */ plugins { - id 'com.netflix.nebula.plugin-plugin' version '20.10.0' + id 'com.netflix.nebula.plugin-plugin' version '20.11.0' id 'java-library' }