Skip to content

Commit

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

0 comments on commit e822a22

Please sign in to comment.