Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ jobs:
- name: Check Iteration
id: check_iteration
run: |
ITERATION=$(grep 'project-iteration=' gradle.properties | cut -d'=' -f2)
VERSION=$(grep 'project-version=' gradle.properties | cut -d'=' -f2)
# Adding 'tr -d "\r"' removes hidden Windows carriage returns
ITERATION=$(grep 'project-iteration=' gradle.properties | cut -d'=' -f2 | tr -d '\r')
VERSION=$(grep 'project-version=' gradle.properties | cut -d'=' -f2 | tr -d '\r')
echo "iteration=$ITERATION" >> $GITHUB_OUTPUT
echo "version=$VERSION" >> $GITHUB_OUTPUT

Expand Down Expand Up @@ -94,3 +95,4 @@ jobs:
!**/build/libs/*-sources.jar
!**/build/libs/*-javadoc.jar
retention-days: 1

3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ git-org-repository=mcextension

# --- Artifact Identity ---
project-version=2026.0.2
project-iteration=2
project-iteration=3
project-group=io.github.mcengine
project-artifact-id=mcextension
project-artifact-name=MCExtension
project-artifact-description=This project is a library designed to allow Minecraft plugins to load their own extensions.
project-artifact-url=https://mcengine.github.io/mcextension-website