Skip to content

Commit

Permalink
Temporarily remove some steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler committed Jun 30, 2024
1 parent 7ba272d commit a306147
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,30 +93,24 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./gradlew :changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
./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
./gradlew :plugin-maven:changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
gh release create ${{ env.LIB_TAG }} --title ${{ env.LIB_NAME }} --notes "${{ steps.extract-release-notes-for-lib.outputs.release_notes }}"
gh release create ${{ env.PLUGIN_GRADLE_TAG }} --title ${{ env.PLUGIN_GRADLE_NAME }} --notes "${{ steps.extract-release-notes-for-plugin-gradle.outputs.release_notes }}"
gh release create ${{ env.PLUGIN_MAVEN_TAG }} --title ${{ env.PLUGIN_MAVEN_NAME }} --notes "${{ steps.extract-release-notes-for-plugin-maven.outputs.release_notes }}"
gh release create ${{ env.LIB_TAG }} --notes "${{ steps.extract-release-notes-for-lib.outputs.release_notes }}" --title ${{ env.LIB_NAME }}
gh release create ${{ env.PLUGIN_GRADLE_TAG }} --notes "${{ steps.extract-release-notes-for-plugin-gradle.outputs.release_notes }}" --title ${{ env.PLUGIN_GRADLE_NAME }}
gh release create ${{ env.PLUGIN_MAVEN_TAG }} --notes "${{ steps.extract-release-notes-for-plugin-maven.outputs.release_notes }}" --title ${{ env.PLUGIN_MAVEN_NAME }}
- name: publish just plugin-gradle
if: "${{ github.event.inputs.to_publish == 'plugin-gradle' }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./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
gh release create ${{ env.LIB_TAG }} --title ${{ env.LIB_NAME }} --notes "${{ steps.extract-release-notes-for-lib.outputs.release_notes }}"
gh release create ${{ env.PLUGIN_GRADLE_TAG }} --notes "${{ steps.extract-release-notes-for-plugin-gradle.outputs.release_notes }}" --title ${{ env.PLUGIN_GRADLE_NAME }}
- name: publish just plugin-maven
if: "${{ github.event.inputs.to_publish == 'plugin-maven' }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./gradlew :plugin-maven:changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
gh release create ${{ env.PLUGIN_GRADLE_TAG }} --title ${{ env.PLUGIN_GRADLE_NAME }} --notes "${{ steps.extract-release-notes-for-plugin-gradle.outputs.release_notes }}"
gh release create ${{ env.PLUGIN_MAVEN_TAG }} --notes "${{ steps.extract-release-notes-for-plugin-maven.outputs.release_notes }}" --title ${{ env.PLUGIN_MAVEN_NAME }}
- name: publish just lib
if: "${{ github.event.inputs.to_publish == 'lib' }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./gradlew :changelogPush -Prelease=true --stacktrace --warning-mode all --no-configuration-cache
gh release create ${{ env.PLUGIN_MAVEN_TAG }} --title ${{ env.PLUGIN_MAVEN_NAME }} --notes "${{ steps.extract-release-notes-for-plugin-maven.outputs.release_notes }}"
gh release create ${{ env.LIB_TAG }} --notes "${{ steps.extract-release-notes-for-lib.outputs.release_notes }}" --title ${{ env.LIB_NAME }}

0 comments on commit a306147

Please sign in to comment.