Skip to content

Commit

Permalink
Updated Env Variables Names
Browse files Browse the repository at this point in the history
  • Loading branch information
Raft08 committed Mar 29, 2024
1 parent 9284b2e commit b5284e1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ jobs:
with:
arguments: publish
env:
MAVEN_USERNAME: ${{ secrets.REPOSITORY_USER }}
MAVEN_PASSWORD: ${{ secrets.REPOSITORY_PASSWORD }}
AW_REPO_USERNAME: ${{ secrets.REPOSITORY_USER }}
AW_REPO_PASSWORD: ${{ secrets.REPOSITORY_PASSWORD }}
SNAPSHOT: false
4 changes: 2 additions & 2 deletions .github/workflows/publish-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
with:
arguments: publish
env:
MAVEN_USERNAME: ${{ secrets.REPOSITORY_USER }}
MAVEN_PASSWORD: ${{ secrets.REPOSITORY_PASSWORD }}
AW_REPO_USERNAME: ${{ secrets.REPOSITORY_USER }}
AW_REPO_PASSWORD: ${{ secrets.REPOSITORY_PASSWORD }}
SNAPSHOT: true
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ subprojects {
url = isSnapshot ? snapshot : release

credentials {
username = System.getenv("MAVEN_USERNAME")
password = System.getenv("MAVEN_PASSWORD")
username = System.getenv("AW_REPO_USERNAME")
username = System.getenv("AW_REPO_PASSWORD")
}

metadataSources {
Expand Down

0 comments on commit b5284e1

Please sign in to comment.