Skip to content

Commit

Permalink
Rename maven repo variables
Browse files Browse the repository at this point in the history
  • Loading branch information
SageSphinx63920 committed Aug 25, 2024
1 parent ce5ac48 commit 737c0bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/api-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
- name: Publish to GitHub Packages
run: ./gradlew publishNewRelease
env:
KEKLIST_USER: ${{ secrets.KEKLIST_USER }}
KEKLIST_PASSWORD: ${{ secrets.KEKLIST_PASSWORD }}
KEKLIST_REPO_USER: ${{ vars.KEKLIST_USER }}
KEKLIST_REPO_PASSWORD: ${{ secrets.KEKLIST_PASSWORD }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
HANGAR_API_TOKEN: ${{ secrets.HANGAR_API_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ publishing {
url = if (version.toString().endsWith("SNAPSHOT")) snapshotsRepoUrl else releasesRepoUrl

credentials {
username = System.getenv("KEKLIST_USER")
password = System.getenv("KEKLIST_PASSWORD")
username = System.getenv("KEKLIST_REPO_USER")
password = System.getenv("KEKLIST_REPO_PASSWORD")

}
}
Expand Down

0 comments on commit 737c0bb

Please sign in to comment.