forked from Fuchs/SimpleIRCBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78eb30d
commit 3685593
Showing
12 changed files
with
243 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- name: Setup JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Build with Gradle | ||
uses: gradle/actions/setup-gradle@v3 | ||
with: | ||
arguments: build | ||
|
||
- name: Upload build artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Package | ||
path: "**/build/libs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,33 @@ | ||
modLoader = "javafml" | ||
loaderVersion = "[49,)" | ||
#issueTrackerURL = "https://github.com/Stonebound/SimpleIRCBridge" | ||
license = "BSD-2-Clause" | ||
loaderVersion = "${forge_loaderversion}" | ||
issueTrackerURL = "${mod_git}" | ||
license = "${mod_license}" | ||
|
||
[[mods]] | ||
modId = "simpleircbridge" | ||
version = "${version}" | ||
displayName = "simple irc bridge" | ||
authors = "Xnrand & contributors" | ||
description = ''' | ||
simple irc bridge stonebound fork | ||
''' | ||
modId = "${mod_id}" | ||
version = "${mod_version}" | ||
displayName = "${mod_name}" | ||
authors = "${mod_authors}" | ||
description = "${mod_description}" | ||
#logoFile = "" | ||
|
||
[[dependencies.simpleircbridge]] | ||
[[dependencies."${mod_id}"]] | ||
modId = "forge" | ||
mandatory = true | ||
versionRange = "[49,)" | ||
versionRange = "${forge_loaderrange}" | ||
ordering = "NONE" | ||
side = "SERVER" | ||
side = "${forge_forgeside}" | ||
|
||
[[dependencies.simpleircbridge]] | ||
[[dependencies."${mod_id}"]] | ||
modId = "minecraft" | ||
mandatory = true | ||
versionRange = "[1.20.4,)" | ||
versionRange = "${forge_minecraftrange}" | ||
ordering = "NONE" | ||
side = "SERVER" | ||
side = "BOTH" | ||
|
||
[[dependencies.simpleircbridge]] | ||
[[dependencies."${mod_id}"]] | ||
modId = "architectury" | ||
mandatory = true | ||
versionRange = "[11.1.17,)" | ||
versionRange = "${forge_architecturyrange}" | ||
ordering = "AFTER" | ||
side = "SERVER" | ||
side = "${forge_architecturyside}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.