Skip to content

Commit

Permalink
👷🏾‍♂️ Reactivated the CI pipeline for Android-SAK
Browse files Browse the repository at this point in the history
  • Loading branch information
vegidio committed Jan 16, 2024
1 parent 2596976 commit 52a3695
Showing 3 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ name: build
on:
push:
tags:
- '<replace me>'
- '*'

jobs:
build:
1 change: 1 addition & 0 deletions .idea/detekt.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions publish.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
configure<PublishingExtension> {
publications {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/vegidio/android-sak")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
create<MavenPublication>("maven") {
groupId = "io.vinicius.sak"
version = System.getenv("VERSION")
from(components["release"])
}
}

0 comments on commit 52a3695

Please sign in to comment.