Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhommen committed Jan 17, 2024
1 parent 5212e94 commit 091be68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ jobs:
with:
arguments: publish
env:
USERNAME: ${{ github.GITHUB_ACTOR }}
USERNAME: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ subprojects {
url = uri("https://maven.pkg.github.com/truzzt/mds-ap3")
version = "0.1.0"
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") as String? ?: System.getenv("TOKEN")
username = System.getenv("USERNAME")
password = System.getenv("TOKEN")
}
}
}
Expand Down

0 comments on commit 091be68

Please sign in to comment.