Skip to content

Commit 3295ea4

Browse files
committed
Temporarily remove some Gradle steps
1 parent fbe0f0b commit 3295ea4

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

.github/workflows/deploy.yml

-10
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,6 @@ jobs:
4646
with:
4747
java-version: 11
4848
distribution: 'temurin'
49-
- name: gradle caching
50-
uses: gradle/actions/setup-gradle@v3
51-
with:
52-
gradle-home-cache-cleanup: true
5349
- name: Generate release name for lib
5450
if: github.event.inputs.to_publish == 'all' || github.event.inputs.to_publish == 'lib'
5551
run: |
@@ -95,24 +91,18 @@ jobs:
9591
- name: publish all
9692
if: "${{ github.event.inputs.to_publish == 'all' }}"
9793
run: |
98-
./gradlew :changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
99-
./gradlew :plugin-gradle:changelogPush -Prelease=true -Pgradle.publish.key=${{ secrets.GRADLE_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_SECRET }} --stacktrace --warning-mode all --no-configuration-cache
100-
./gradlew :plugin-maven:changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
10194
gh release create ${{ env.LIB_TAG }} --title '${{ env.LIB_NAME }}' --notes-file RELEASE_NOTES_FOR_LIB.md
10295
gh release create ${{ env.PLUGIN_GRADLE_TAG }} --title '${{ env.PLUGIN_GRADLE_NAME }}' --notes-file RELEASE_NOTES_FOR_PLUGIN_GRADLE.md
10396
gh release create ${{ env.PLUGIN_MAVEN_TAG }} --title '${{ env.PLUGIN_MAVEN_NAME }}' --notes-file RELEASE_NOTES_FOR_PLUGIN_MAVEN.md
10497
- name: publish just plugin-gradle
10598
if: "${{ github.event.inputs.to_publish == 'plugin-gradle' }}"
10699
run: |
107-
./gradlew :plugin-gradle:changelogPush -Prelease=true -Pgradle.publish.key=${{ secrets.GRADLE_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_SECRET }} --stacktrace --warning-mode all --no-configuration-cache
108100
gh release create ${{ env.PLUGIN_GRADLE_TAG }} --title '${{ env.PLUGIN_GRADLE_NAME }}' --notes-file RELEASE_NOTES_FOR_PLUGIN_GRADLE.md
109101
- name: publish just plugin-maven
110102
if: "${{ github.event.inputs.to_publish == 'plugin-maven' }}"
111103
run: |
112-
./gradlew :plugin-maven:changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
113104
gh release create ${{ env.PLUGIN_MAVEN_TAG }} --title '${{ env.PLUGIN_MAVEN_NAME }}' --notes-file RELEASE_NOTES_FOR_PLUGIN_MAVEN.md
114105
- name: publish just lib
115106
if: "${{ github.event.inputs.to_publish == 'lib' }}"
116107
run: |
117-
./gradlew :changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
118108
gh release create ${{ env.LIB_TAG }} --title '${{ env.LIB_NAME }}' --notes-file RELEASE_NOTES_FOR_LIB.md

0 commit comments

Comments
 (0)