Add orx-git-archiver

This commit is contained in:
Edwin Jakobs
2021-08-27 15:04:53 +02:00
parent b24054c3e7
commit bf4b016039
4 changed files with 106 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import org.openrndr.applicationSynchronous
import org.openrndr.extensions.Screenshots
fun main() = applicationSynchronous {
program {
val ga = extend(GitArchiver()) {
commitOnRun = false
commitOnProduceAssets = false
}
extend(Screenshots())
extend {
}
}
}