Skip to content

Commit

Permalink
Merge pull request #105 from jdaugherty/5.0.x
Browse files Browse the repository at this point in the history
Use old variable values for release publishing
  • Loading branch information
jdaugherty authored Dec 13, 2024
2 parents e953c90 + 16a7f0d commit 4b97444
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
- name: "📤 Publish artifacts to Sonatype"
id: publish
env:
NEXUS_PUBLISH_USERNAME: ${{ secrets.NEXUS_PUBLISH_USERNAME }}
NEXUS_PUBLISH_PASSWORD: ${{ secrets.NEXUS_PUBLISH_PASSWORD }}
NEXUS_PUBLISH_URL: ${{ secrets.NEXUS_PUBLISH_RELEASE_URL }}
NEXUS_PUBLISH_STAGING_PROFILE_ID: ${{ secrets.NEXUS_PUBLISH_STAGING_PROFILE_ID }}
NEXUS_PUBLISH_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
NEXUS_PUBLISH_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
NEXUS_PUBLISH_URL: ${{ secrets.SONATYPE_NEXUS_URL }}
NEXUS_PUBLISH_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
SIGNING_PASSPHRASE: ${{ secrets.SIGNING_PASSPHRASE }}
SECRING_FILE: ${{ secrets.SECRING_FILE }}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ buildscript {

plugins {
id 'com.github.ben-manes.versions' version '0.51.0'
id 'org.grails.grails-publish'
}

version = projectVersion
Expand All @@ -18,6 +17,7 @@ group = 'org.grails.plugins'
apply plugin: 'java-library'
apply plugin: 'java-test-fixtures'
apply plugin: 'org.grails.grails-plugin'
apply plugin: 'org.grails.grails-publish'

tasks.withType(JavaCompile).configureEach {
options.release = 17
Expand Down
10 changes: 0 additions & 10 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
pluginManagement {
repositories {
maven { url "https://repo.grails.org/grails/core/" }
gradlePluginPortal()
}
plugins {
id "org.grails.grails-publish" version "${grailsGradlePluginVersion}"
}
}

plugins {
id 'com.gradle.develocity' version '3.18.2'
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2'
Expand Down

0 comments on commit 4b97444

Please sign in to comment.