Skip to content

Commit

Permalink
read user from env
Browse files Browse the repository at this point in the history
  • Loading branch information
hewigovens committed Sep 15, 2020
1 parent 9fc7aee commit e153be9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ jobs:
working-directory: android
env:
TAG_NAME: ${{ github.event.release.tag_name }}
GPR_USER: ${{ GITHUB_ACTOR }}
GPR_USER: ${{ secrets.BOT_GITHUB_USER }}
GPR_API_KEY: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion android/lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ publishing {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/trustwallet/trust-web3-provider")
credentials {
username = System.getenv("GPR_USER") ?: "trust-bot"
username = System.getenv("GPR_USER")
password = System.getenv("GPR_API_KEY")
}
}
Expand Down

0 comments on commit e153be9

Please sign in to comment.