Skip to content

Commit

Permalink
Fix file locations
Browse files Browse the repository at this point in the history
  • Loading branch information
FxMorin committed Jun 14, 2022
1 parent 18e3b9d commit 8ff74cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
run: ./gradlew build
- uses: Kir-Antipov/[email protected]
with:
files: 'build/libs/*.jar;!build/libs/*-dev.jar'
files-primary: build/libs/!(*-@(dev|sources)).jar
files-secondary: build/libs/*-@(dev|sources).jar
version-type: alpha
version-resolver: releases
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,18 +90,18 @@ tasks.withType(Jar) {
from sourceSets.api.output
}

/*task apiJar(type: Jar) {
task apiJar(type: Jar) {
classifier "api-dev"
from sourceSets.api.output
}*/
}

task remapApiJar(type: RemapJarTask) {
classifier "api"

input = apiJar.archiveFile.get().asFile
addNestedDependencies = false
}
//prepareRemapApiJar.dependsOn(apiJar)
prepareRemapApiJar.dependsOn(apiJar)

runClient.doFirst {
args = ['--username', "PR0CESS", '--uuid', UUID.randomUUID()]
Expand Down

0 comments on commit 8ff74cc

Please sign in to comment.