Skip to content

Commit 678a8f7

Browse files
committed
Test run.
1 parent 5251040 commit 678a8f7

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

Diff for: .github/workflows/deploy.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
name: deploy
3030
env:
3131
gh_token: ${{ secrets.GITHUB_TOKEN }}
32+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3233
ORG_GRADLE_PROJECT_nexus_user: ${{ secrets.NEXUS_USER }}
3334
ORG_GRADLE_PROJECT_nexus_pass64: ${{ secrets.NEXUS_PASS64 }}
3435
ORG_GRADLE_PROJECT_gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}
@@ -44,9 +45,11 @@ jobs:
4445
uses: gradle/gradle-build-action@v2
4546
with:
4647
gradle-home-cache-cleanup: true
47-
- name: git fetch origin main
48-
run: git fetch origin main
48+
- run: git fetch origin main
4949
- name: publish all
5050
if: "${{ github.event.inputs.to_publish == 'all' }}"
5151
run: |
5252
./gradlew :changelogPush -Prelease=true -Penable_publishing=true -Pgradle.publish.key=${{ secrets.GRADLE_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_SECRET }} --stacktrace --warning-mode all
53+
- run: git checkout main
54+
- run: git merge release --ff-only
55+
- run: git push origin main

Diff for: settings.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
// https://github.com/diffplug/spotless/blob/main/plugin-gradle/CHANGES.md
1111
id 'com.diffplug.spotless' version '7.0.0.BETA1' apply false
1212
// https://github.com/diffplug/spotless-changelog/blob/main/CHANGELOG.md
13-
id 'com.diffplug.spotless-changelog' version '3.0.2' apply false
13+
id 'com.diffplug.spotless-changelog' version '3.1.1' apply false
1414
// https://plugins.gradle.org/plugin/com.gradle.plugin-publish
1515
id 'com.gradle.plugin-publish' version '1.2.1' apply false
1616
// https://github.com/equodev/equo-ide/blob/main/plugin-gradle/CHANGELOG.md
@@ -21,9 +21,9 @@ plugins {
2121
blowdryerSetup {
2222
github 'diffplug/blowdryer-diffplug', 'tag', '7.3.0'
2323
//devLocal '../blowdryer-diffplug'
24-
setPluginsBlockTo {
25-
it.file 'plugin.versions'
26-
}
24+
// setPluginsBlockTo {
25+
// it.file 'plugin.versions'
26+
// }
2727
}
2828
rootProject.name = 'spotless-changelog'
2929
include 'spotless-changelog-lib'

0 commit comments

Comments
 (0)