mirror of
https://codeberg.org/moonleay/Gimbal.git
synced 2025-04-04 11:44:13 +02:00
ci: changed token to Bearer
Signed-off-by: moonleay <contact@moonleay.net>
This commit is contained in:
parent
da26ae4c5a
commit
3d6bd1ef75
1 changed files with 2 additions and 2 deletions
|
@ -189,13 +189,13 @@ publishing {
|
|||
name = "Codeberg"
|
||||
val repoOwner = System.getenv("GITHUB_REPOSITORY_OWNER")
|
||||
val serverUrl = System.getenv("GITHUB_SERVER_URL")
|
||||
val accessToken = System.getenv("GITHUB_TOKEN")
|
||||
url = uri("$serverUrl/api/packages/$repoOwner/maven")
|
||||
authentication {
|
||||
create("header", HttpHeaderAuthentication::class.java) {
|
||||
val accessToken = System.getenv("GITHUB_TOKEN")
|
||||
credentials(HttpHeaderCredentials::class) {
|
||||
name = "Authorization"
|
||||
value = accessToken
|
||||
value = "Bearer $accessToken"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue