8 Commits

Author SHA1 Message Date
77f71be086 remove build dir
All checks were successful
Build Minecraft Mod / build (push) Successful in 4m25s
Build Minecraft Mod / release (push) Successful in 17s
2026-04-01 13:27:56 +02:00
169e9eff08 Update src/main/java/dev/tggamesyt/szar/mixin/PlayerAdvancementTrackerMixin.java
Some checks failed
Build Minecraft Mod / release (push) Has been cancelled
Build Minecraft Mod / build (push) Has been cancelled
2026-04-01 11:24:20 +00:00
5dcf4fc221 Update src/client/java/dev/tggamesyt/szar/client/mixin/MouseFlipMixin.java
All checks were successful
Build Minecraft Mod / build (push) Successful in 4m8s
Build Minecraft Mod / release (push) Successful in 20s
2026-04-01 11:09:28 +00:00
34b8fccf24 april
Some checks failed
Build Minecraft Mod / build (push) Failing after 2m35s
Build Minecraft Mod / release (push) Has been skipped
2026-04-01 09:24:48 +02:00
62ad19516b Trying to fix the issue where it gives a lot of files instead of one. #2
All checks were successful
Build Minecraft Mod / build (push) Successful in 3m55s
Build Minecraft Mod / release (push) Successful in 17s
2026-03-31 16:41:54 +00:00
c3eb514db7 Trying to fix the issue where it gives a lot of files instead of one.
All checks were successful
Build Minecraft Mod / build (push) Successful in 3m58s
Build Minecraft Mod / release (push) Successful in 18s
2026-03-31 16:35:13 +00:00
4bc0779967 Update .gitea/workflows/build.yml
All checks were successful
Build Minecraft Mod / build (push) Successful in 3m57s
Build Minecraft Mod / release (push) Successful in 18s
2026-03-31 16:28:12 +00:00
ab32bc230e fahhh
Some checks failed
Build Minecraft Mod / build (push) Successful in 4m26s
Build Minecraft Mod / release (push) Failing after 17s
2026-03-31 17:11:41 +02:00
278 changed files with 150 additions and 387 deletions

View File

@@ -87,7 +87,7 @@ jobs:
echo "Failed to read mod info"
exit 1
fi
JAR="build/libs/${NAME}-${VERSION}.jar"
JAR="${NAME}-${VERSION}.jar"
echo "NAME=$NAME" >> $GITEA_ENV
echo "VERSION=$VERSION" >> $GITEA_ENV
echo "JAR=$JAR" >> $GITEA_ENV
@@ -131,13 +131,18 @@ jobs:
- name: Upload the mod JAR
run: |
if [ ! -f "$JAR" ]; then
echo "Error: JAR not found: $JAR"
# Find the largest JAR file (the main mod file is 120 MiB, others are KiB)
JAR_FILE=$(ls -S ./release-artifacts/*.jar | head -n 1)
if [ ! -f "$JAR_FILE" ]; then
echo "Error: Main JAR not found in ./release-artifacts/"
exit 1
fi
echo "Uploading largest file: $(basename $JAR_FILE)"
curl -X POST \
-H "Authorization: token ${{ secrets.GITEATOKEN }}" \
-H "Content-Type: application/java-archive" \
--data-binary @"$JAR" \
"${{ gitea.server_url }}/api/v1/repos/${{ gitea.repository }}/releases/${RELEASE_ID}/assets?name=$(basename $JAR)"
--data-binary @"$JAR_FILE" \
"${{ gitea.server_url }}/api/v1/repos/${{ gitea.repository }}/releases/${RELEASE_ID}/assets?name=$(basename $JAR_FILE)"

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More