Skip to content

Commit

Permalink
Nebula-plugin-plugin 20.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Jan 9, 2024
1 parent 4bf7007 commit 0c9c4cf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/nebula.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


plugins {
id 'com.netflix.nebula.plugin-plugin' version '20.10.0'
id 'com.netflix.nebula.plugin-plugin' version '20.11.0'
id 'java-gradle-plugin'
}

Expand Down

0 comments on commit 0c9c4cf

Please sign in to comment.