Skip to content

Commit 0c9c4cf

Browse files
committed
Nebula-plugin-plugin 20.11.0
1 parent 4bf7007 commit 0c9c4cf

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

.github/workflows/nebula.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
name: Gradle Build without Publish
2727
steps:
2828
- uses: actions/checkout@v1
29+
- name: Setup git user
30+
run: |
31+
git config --global user.name "Nebula Plugin Maintainers"
32+
git config --global user.email "nebula-plugins-oss@netflix.com"
2933
- name: Set up JDK 8
3034
uses: actions/setup-java@v2
3135
with:
@@ -66,6 +70,10 @@ jobs:
6670
NETFLIX_OSS_SONATYPE_PASSWORD: ${{ secrets.ORG_SONATYPE_PASSWORD }}
6771
steps:
6872
- uses: actions/checkout@v1
73+
- name: Setup git user
74+
run: |
75+
git config --global user.name "Nebula Plugin Maintainers"
76+
git config --global user.email "nebula-plugins-oss@netflix.com"
6977
- name: Setup jdk 8
7078
uses: actions/setup-java@v1
7179
with:
@@ -103,6 +111,10 @@ jobs:
103111
NETFLIX_OSS_REPO_PASSWORD: ${{ secrets.ORG_NETFLIXOSS_PASSWORD }}
104112
steps:
105113
- uses: actions/checkout@v1
114+
- name: Setup git user
115+
run: |
116+
git config --global user.name "Nebula Plugin Maintainers"
117+
git config --global user.email "nebula-plugins-oss@netflix.com"
106118
- name: Setup jdk 8
107119
uses: actions/setup-java@v1
108120
with:
@@ -131,3 +143,4 @@ jobs:
131143
startsWith(github.ref, 'refs/tags/v') &&
132144
(!contains(github.ref, '-rc.'))
133145
run: ./gradlew --info --stacktrace -Dgradle.publish.key=${{ secrets.gradlePublishKey }} -Dgradle.publish.secret=${{ secrets.gradlePublishSecret }} -Prelease.useLastTag=true final
146+

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
plugins {
19-
id 'com.netflix.nebula.plugin-plugin' version '20.10.0'
19+
id 'com.netflix.nebula.plugin-plugin' version '20.11.0'
2020
id 'java-gradle-plugin'
2121
}
2222

0 commit comments

Comments
 (0)