This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 3131 token : ${{ secrets.GITHUB_TOKEN }}
3232 - name : Publish to Sonatyoe OSSRH
3333 env :
34- TAGGED_VERSION : ${{ steps.release_version.outputs.release_version }}
3534 GRADLE_ENTERPRISE_ACCESS_KEY : ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
3635 GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER : ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }}
3736 GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY : ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }}
Original file line number Diff line number Diff line change @@ -87,9 +87,8 @@ task fetchSource {
8787 ant. mkdir dir : checkOutDir
8888
8989 println " Downloading GORM source code."
90- def tag = System . getenv(' TAGGED_VERSION' )
91- if (tag) {
92- ant. get src : " https://github.com/grails/grails-data-mapping/archive/${ tag} .zip" , dest : zipFile, verbose : true
90+ if (isReleaseVersion) {
91+ ant. get src : " https://github.com/grails/grails-data-mapping/archive/v${ datastoreVersion} .zip" , dest : zipFile, verbose : true
9392 } else {
9493 ant. get src : " https://github.com/grails/grails-data-mapping/zipball/${ githubBranch} " , dest : zipFile, verbose : true
9594 }
You can’t perform that action at this time.
0 commit comments