Skip to content

Commit

Permalink
Add a publish token and fix the url
Browse files Browse the repository at this point in the history
  • Loading branch information
neoBortx authored and Borja committed Jan 18, 2024
1 parent cb7e50d commit 3bd7848
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
echo "KEYSTORE_PASSWORD=${{ secrets.KEYSTORE_PASSWORD }}" >> $GITHUB_ENV
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
echo GPR_USER=${{ github.actor }} >> $GITHUB_ENV
echo GPR_KEY=${{ secrets.GITHUB_TOKEN }} >> $GITHUB_ENV
echo GPR_KEY=${{ secrets.PUBLISH_TOKEN }} >> $GITHUB_ENV
- name: Decode Keystore
run: pwd; echo ${{ secrets.ENCODED_KEYSTORE }} | base64 -d > ${{ secrets.KEYSTORE_NAME }}
Expand Down
8 changes: 4 additions & 4 deletions simpleBleClient/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ publishing {
artifact("$buildDir/outputs/aar/simpleBleClient_release_$versionLib.aar")

pom {
name.set("Simple BLE Client")
description.set("A simple BLE client library for Android that works with coroutines")
url.set("https://github.com/neoBortx/SimpleBleClient")
name ="Simple BLE Client"
description = "A simple BLE client library for Android that works with coroutines"
url = "https://github.com/neoBortx/SimpleBleClient"
licenses {
license {
name.set("MIT License")
Expand All @@ -85,7 +85,7 @@ publishing {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/bortxapps/simplebleclient/")
url = uri("https://maven.pkg.github.com/neobortx/simplebleclient/")

credentials {
username = System.getenv("GPR_USER")
Expand Down

0 comments on commit 3bd7848

Please sign in to comment.