Skip to content

Commit

Permalink
Publish to Reposilite
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiasBuelens committed Jul 13, 2023
1 parent fc5d6e6 commit 2c65e3c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ jobs:
arguments: publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSILITE_USERNAME: ${{ secrets.REPOSILITE_USERNAME }}
REPOSILITE_PASSWORD: ${{ secrets.REPOSILITE_PASSWORD }}
8 changes: 8 additions & 0 deletions ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,14 @@ dependencies {

publishing {
repositories {
maven {
name = "reposilite"
url = uri("https://reposilite.prudentgiraffe.com/releases")
credentials {
username = System.getenv("REPOSILITE_USERNAME")
password = System.getenv("REPOSILITE_PASSWORD")
}
}
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/THEOplayer/android-ui")
Expand Down

0 comments on commit 2c65e3c

Please sign in to comment.