Skip to content

Commit 62f3862

Browse files
committed
aaa
1 parent 5c8434e commit 62f3862

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/build-and-test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,8 @@ on:
1010

1111
jobs:
1212
build-and-test:
13-
uses: IntelligenceModding/actions/.github/workflows/build-and-test.yaml@master
13+
uses: IntelligenceModding/actions/.github/workflows/build-and-test.yaml@master
14+
with:
15+
build: ${{ github.event_name != 'push' }}
16+
build_name: AdvancedPeripherals
17+
pr: ${{ github.event_name == 'pull_request' && github.event.pull_request.number || '' }}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ wrapper {
3030

3131
def isSnapshotVersion = project.hasProperty('teamcityBuild')
3232

33-
version = "${mod_version}" + (isSnapshotVersion ? "-SNAPSHOT" : "")
33+
version = "${mod_version}" + (isSnapshotVersion ? "-SNAPSHOT" : "") + "${mod_artifact_suffix}"
3434
group = 'de.srendi.advancedperipherals'
3535

3636
def static getenv(path = ".env") {

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ org.gradle.logging.level=info
44

55
# Minecraft related
66
mod_id=advancedperipherals
7+
mod_artifact_suffix=
78
minecraft_version=1.19.2
89
forge_version=43.4.0
910
loader_version=43

0 commit comments

Comments
 (0)