Skip to content

Commit 7a85415

Browse files
committed
github build testing
1 parent 40580f9 commit 7a85415

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v4
14+
with:
15+
submodules: recursive
1416

1517
- uses: actions/setup-node@v4
1618
with:
@@ -52,6 +54,10 @@ jobs:
5254
- name: print discord notification json to be verified before final upload (build will take a while)
5355
run: cat discord_update.json
5456

57+
- name: build forked plugin
58+
working-directory: egt-plugin-fork
59+
run: ./gradlew publishToMavenLocal
60+
5561
# Build the mod
5662
- run: ./gradlew build
5763

settings.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import org.gradle.internal.impldep.com.google.common.collect.ImmutableList
33
pluginManagement {
44
includeBuild("egt-plugin-fork")
55
repositories {
6+
mavenLocal()
67
gradlePluginPortal()
78
mavenCentral()
8-
//mavenLocal()
99
maven("https://repo.essential.gg/repository/maven-public")
1010
maven("https://maven.architectury.dev")
1111
maven("https://maven.fabricmc.net")
@@ -15,9 +15,9 @@ pluginManagement {
1515
// We also recommend specifying your desired version here if you're using more than one of the plugins,
1616
// so you do not have to change the version in multilpe places when updating.
1717
plugins {
18-
//val egtVersion = "0.6.11-test2"
19-
id("gg.essential.multi-version.root") //version egtVersion
20-
id("gg.essential.multi-version.api-validation") //version egtVersion
18+
val egtVersion = "0.6.11-test2"
19+
id("gg.essential.multi-version.root") version egtVersion
20+
id("gg.essential.multi-version.api-validation") version egtVersion
2121
}
2222
}
2323

0 commit comments

Comments
 (0)