Skip to content

Commit 33a0d0d

Browse files
authored
Merge pull request #42 from diffplug/update-blowdryer-diffplug-9.1.0
Update blowdryer-diffplug to 9.1.0 to fix publishing
2 parents 3f631cc + a84e8f7 commit 33a0d0d

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# GH_TOKEN
21
# NEXUS_USER
32
# NEXUS_PASS64 (base64 NOTE: `base64` and `openssl base64` failed, had to use Java
43
# byte[] data = "{{password}}".getBytes(StandardCharsets.UTF_8);
@@ -27,7 +26,7 @@ jobs:
2726
runs-on: ubuntu-latest
2827
name: deploy
2928
env:
30-
gh_token: ${{ secrets.GH_TOKEN }}
29+
gh_token: ${{ secrets.GITHUB_TOKEN }}
3130
ORG_GRADLE_PROJECT_nexus_user: ${{ secrets.NEXUS_USER }}
3231
ORG_GRADLE_PROJECT_nexus_pass64: ${{ secrets.NEXUS_PASS64 }}
3332
ORG_GRADLE_PROJECT_gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}

settings.gradle

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,24 @@ plugins {
88
// https://github.com/diffplug/blowdryer/blob/main/CHANGELOG.md
99
id 'com.diffplug.blowdryerSetup' version '1.7.1'
1010
// https://github.com/diffplug/spotless/blob/main/plugin-gradle/CHANGES.md
11-
id 'com.diffplug.spotless' version '7.0.3' apply false
11+
id 'com.diffplug.spotless' version '7.2.1' apply false
1212
// https://github.com/diffplug/spotless-changelog/blob/main/CHANGELOG.md
1313
id 'com.diffplug.spotless-changelog' version '3.1.2' apply false
1414
// https://plugins.gradle.org/plugin/com.gradle.plugin-publish
1515
id 'com.gradle.plugin-publish' version '1.3.1' apply false
16+
// https://plugins.gradle.org/plugin/com.gradle.develocity
17+
id 'com.gradle.develocity' version '4.1.1'
1618
// https://github.com/equodev/equo-ide/blob/main/plugin-gradle/CHANGELOG.md
1719
id 'dev.equo.ide' version '1.7.8' apply false
1820
// https://github.com/gradle-nexus/publish-plugin/releases
1921
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0' apply false
2022
}
2123
rootProject.name = 'blowdryer'
2224
blowdryerSetup {
23-
github 'diffplug/blowdryer-diffplug', 'tag', '9.0.0'
25+
github 'diffplug/blowdryer-diffplug', 'tag', '9.1.0'
2426
//devLocal '../blowdryer-diffplug'
2527
setPluginsBlockTo {
2628
it.file 'plugin.versions'
2729
}
28-
}
30+
}
31+
apply from: com.diffplug.blowdryer.Blowdryer.file('base/buildscan-on-ci.gradle')

0 commit comments

Comments
 (0)