diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9de90d6..1b4fbab 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,6 +79,8 @@ jobs: ./gradlew patchChangelog # Publish the plugin to JetBrains Marketplace + # The release zip is already attached to the GitHub release by the + # Prepare Release workflow (the artifact PMC voted on); no upload here. - name: Publish Plugin env: PUBLISH_TOKEN: ${{ secrets.PUBLISH_TOKEN }} @@ -87,12 +89,6 @@ jobs: PRIVATE_KEY_PASSWORD: ${{ secrets.PRIVATE_KEY_PASSWORD }} run: ./gradlew publishPlugin - # Upload artifact as a release asset - - name: Upload Release Asset - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: gh release upload ${{ github.event.release.tag_name }} ./build/distributions/* - # Create a pull request with changelog update - name: Create Pull Request if: ${{ steps.properties.outputs.changelog != '' }}