File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
name : Publish package to GitHub Packages
2
2
on :
3
3
workflow_dispatch :
4
+ release :
5
+ types : [published]
4
6
jobs :
5
7
publish :
6
8
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ publishing {
28
28
repositories {
29
29
maven {
30
30
name = " GitHubPackages"
31
- url = uri(" https://maven.pkg.github.com/yutaro-sakamoto /opensourcecobol4j" )
31
+ url = uri(" https://maven.pkg.github.com/opensourcecobol /opensourcecobol4j" )
32
32
credentials {
33
33
username = project.findProperty(" gpr.user" ) as String? ? : System .getenv(" GITHUB_ACTOR" )
34
34
password = project.findProperty(" gpr.key" ) as String? ? : System .getenv(" GITHUB_TOKEN" )
@@ -37,6 +37,9 @@ publishing {
37
37
}
38
38
publications {
39
39
register<MavenPublication >(" gpr" ) {
40
+ groupId = " jp.osscons.opensourcecobol"
41
+ artifactId = " libcobj"
42
+ version = " 1.0.15b"
40
43
from(components[" java" ])
41
44
}
42
45
}
You can’t perform that action at this time.
0 commit comments