Skip to content

Commit

Permalink
fix missing token
Browse files Browse the repository at this point in the history
  • Loading branch information
sisby-folk committed Aug 23, 2024
1 parent fefdebf commit f22845f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jar {
}

githubRelease {
token = System.getenv("GITHUB_TOKEN")
token = "$System.env.GITHUB_TOKEN"
owner = project.user
repo = slug
tagName = "v${baseVersion}+${tagBranch}"
Expand All @@ -81,7 +81,7 @@ githubRelease {
}

modrinth {
token = System.getenv("MODRINTH_TOKEN")
token "$System.env.MODRINTH_TOKEN"
projectId = modrinthSlug
versionNumber = project.version
uploadFile = remapJar
Expand Down

0 comments on commit f22845f

Please sign in to comment.