File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ jobs:
38
38
- name : Gather version name from git describe
39
39
id : version
40
40
if : github.event_name == 'push'
41
- run : echo version=$(git describe --tags --dirty) >> $GITHUB_OUTPUT
41
+ run : echo version=$(git describe --tags --dirty) | tee $GITHUB_OUTPUT
42
42
43
43
- name : Publish to GitHub Packages
44
44
if : github.event_name == 'push'
45
- run : ./gradlew publish
45
+ run : ./gradlew publishAllPublicationsToGithubRepository
46
46
env :
47
47
GITHUB_USER : ${{ github.actor }}
48
48
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ publishing {
77
77
78
78
repositories {
79
79
maven {
80
- name = " libsession-util-android "
80
+ name = " local "
81
81
url = uri(layout.buildDirectory.dir(" repo" ))
82
82
}
83
83
@@ -87,7 +87,7 @@ publishing {
87
87
// Only enable the github remote repository if credentials are given
88
88
if (githubUser.isNotBlank() && githubToken.isNotBlank()) {
89
89
maven {
90
- name = " libsession-util-android "
90
+ name = " github "
91
91
url =
92
92
uri(" https://maven.pkg.github.com/session-foundation/libsession-android" )
93
93
credentials {
You can’t perform that action at this time.
0 commit comments