Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
fix: add creds
Browse files Browse the repository at this point in the history
  • Loading branch information
braddialpad committed Nov 22, 2022
1 parent 71fb844 commit 018d241
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_USER: braddialpad

- name: Deploy production - Swift
if: ${{ github.ref == 'refs/heads/production' }}
Expand Down
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ afterEvaluate {
maven {
name = "Dialtone Tokens Maven Packages"
url = uri("https://maven.pkg.github.com/dialpad/dialtone-tokens")
credentials {
username = project.findProperty("release.user") ?: System.getenv("GITHUB_USER")
password = project.findProperty("release.key") ?: System.getenv("GITHUB_TOKEN")
}
}
}
}
Expand Down

0 comments on commit 018d241

Please sign in to comment.