Set the correct MethodType on names of method invocation and declarat… #75
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: publish | |
on: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+ | |
- v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+ | |
concurrency: | |
group: publish-${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
release: | |
uses: openrewrite/gh-automation/.github/workflows/publish-gradle.yml@main | |
secrets: | |
gradle_enterprise_access_key: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
ossrh_username: ${{ secrets.OSSRH_USERNAME }} | |
ossrh_token: ${{ secrets.OSSRH_TOKEN }} | |
ossrh_signing_key: ${{ secrets.OSSRH_SIGNING_KEY }} | |
ossrh_signing_password: ${{ secrets.OSSRH_SIGNING_PASSWORD }} |