Skip to content

Commit

Permalink
butler 2.1.0 (still not working)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ealrann committed Dec 6, 2022
1 parent f72ed22 commit eed4960
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath group: 'org.mini2Dx', name: 'butler', version: '1.1.3'
classpath group: 'org.mini2Dx', name: 'butler', version: '2.1.0'
}
}

Expand All @@ -20,6 +20,7 @@ subprojects {
mavenCentral()
maven {
url "https://maven.pkg.github.com/ealrann/emf-standalone"
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
credentials {
username = findProperty("github.username")
password = findProperty("github.token")
Expand Down
1 change: 1 addition & 0 deletions butler_push.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
butler push /dev/shm/gradle-build/ ealrann/vsand:linux --userversion 1.4.1
17 changes: 9 additions & 8 deletions org.sheepy.vsand/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,16 @@ butler {
user = "ealrann"
game = "vsand"
userVersion = project.version
}

windows {
binDirectory = "$projectDir/build/image"
channel = "windows"
}
linux {
binDirectory = "$projectDir/build/image"
channel = "linux"
}
task butlerPushWindows(type: org.mini2Dx.butler.task.PushTask) {
binDirectory = new File("$projectDir/build/image/")
channel = "windows"
}

task butlerPushLinux(type: org.mini2Dx.butler.task.PushTask) {
binDirectory = new File("$projectDir/build/image")
channel = "linux"
}

run {
Expand Down

0 comments on commit eed4960

Please sign in to comment.