only publish on pushes to the main branch
All checks were successful
Publish to snapshot maven / build (push) Successful in 18s

This commit is contained in:
moehreag 2024-05-19 17:57:11 +02:00
parent b33e11fffa
commit 9b854c7be0
2 changed files with 5 additions and 1 deletions

View file

@ -1,6 +1,9 @@
name: Publish to snapshot maven
on: push
on:
push:
branches:
- 'mistress'
jobs:
build:

View file

@ -55,5 +55,6 @@ fun Project.minecraft(
fun Project.loader(version: String){
dependencies.add("implementation", "org.ecorous.esnesnon:nonsense-loader:$version")
// TODO how can we make this version not have to be hard-coded?
dependencies.add("annotationProcessor", "net.fabricmc:sponge-mixin:0.13.4+mixin.0.8.5")
}