File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 6060 run : ./gradlew publish --no-daemon
6161 env :
6262 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
63- GITHUB_ACTOR : ${{ github.actor }}
6463
6564 - name : Extract tag version
6665 id : tag_version
@@ -132,6 +131,10 @@ jobs:
132131 uses : actions/download-artifact@v4
133132 with :
134133 name : mcp-bsl-context-jar
134+
135+ - name : Copy JAR to project root for Docker
136+ run : cp mcp-bsl-context-*.jar mcp-bsl-context.jar
137+
135138 - name : Extract tag version
136139 id : tag_version
137140 run : |
Original file line number Diff line number Diff line change @@ -121,11 +121,11 @@ tasks.named("startScripts") {
121121publishing {
122122 repositories {
123123 maven {
124- name = " monaco -bsl-context"
125- url = uri(" https://maven.pkg.github.com/alkoleft/monaco -bsl-context" )
124+ name = " mcp -bsl-context"
125+ url = uri(" https://maven.pkg.github.com/alkoleft/mcp -bsl-context" )
126126 credentials {
127- username = project.findProperty( " gpr.user " ) as String? ? : System .getenv(" USERNAME " )
128- password = project.findProperty( " gpr.key " ) as String? ? : System .getenv(" TOKEN " )
127+ username = System .getenv(" GITHUB_ACTOR " )
128+ password = System .getenv(" GITHUB_TOKEN " )
129129 }
130130 }
131131 }
You can’t perform that action at this time.
0 commit comments