10 Commits

Author SHA1 Message Date
ee753865fe Update modpack to 7.0
All checks were successful
Build and Release modpack / Create Release from tag (push) Successful in 10m55s
2026-05-15 20:07:32 +02:00
f8b4936951 Fix Version in release title
All checks were successful
Build and Release modpack / Create Release from tag (push) Successful in 7m55s
2026-04-05 14:20:52 +02:00
0a50a2d702 Remove workarounds
All checks were successful
Build and Release modpack / Create Release from tag (push) Successful in 7m59s
2026-04-03 19:34:55 +02:00
21da7b8be6 Properly disable old productive bee version
All checks were successful
Build and Release modpack / Create Release from tag (push) Successful in 5m23s
2026-04-02 19:38:28 +02:00
7e783772dc Fix mod list merging
All checks were successful
Build and Release modpack / Create Release from tag (push) Successful in 8m19s
2026-04-02 02:49:42 +02:00
3bf4ade582 Fix duplicated mod because of missing server files
All checks were successful
Build and Release modpack / Create Release from tag (push) Successful in 6m35s
2026-04-01 23:55:36 +02:00
8a8a73d6db Fix unignore shaders and improve update notification
Some checks failed
Build and Release modpack / Create Release from tag (push) Failing after 1m34s
2026-04-01 21:52:39 +02:00
02eac65c9a Ignore double included mod ComputerCraft
All checks were successful
Build and Release modpack / Create Release from tag (push) Successful in 7m14s
2026-03-29 23:47:44 +02:00
1ce656ac93 fix include new mods also on server
Some checks failed
Build and Release modpack / Create Release from tag (push) Failing after 4m21s
2026-01-31 22:36:18 +01:00
05d75f375f Add Morph-o-Tool and JER
Some checks failed
Build and Release modpack / Create Release from tag (push) Failing after 4m36s
2026-01-31 21:50:29 +01:00
3 changed files with 22 additions and 5 deletions

View File

@@ -55,7 +55,7 @@ jobs:
- name: Build and Push Container image for the Server
run: |
docker login ${IMAGE_URL} --username gitAutomationBot --password ${{ secrets.BOT_TOKEN }}
docker build -t ${IMAGE_URL}:${{ github.ref_name }} --network host /out/server
docker build -t ${IMAGE_URL}:${{ github.ref_name }} /out/server
docker tag ${IMAGE_URL}:${{ github.ref_name }} ${IMAGE_URL}:latest
docker push ${IMAGE_URL}:${{ github.ref_name }}
docker push ${IMAGE_URL}:latest
@@ -67,7 +67,7 @@ jobs:
git fetch origin +refs/heads/main
git checkout main
rm -rf ./minecraft/mods
cp -r /out/client/* .
cp -r /out/client/** .
git config user.name gitAutomationBot
git config user.email service+git@marquis.site
@@ -77,8 +77,9 @@ jobs:
- name: "Create Gitea Release for Curse Modpack"
uses: akkuman/gitea-release-action@v1
if: ${{ failure() || success() }}
with:
name: "Version ${{ github.ref_name }} (${{ steps.config.outputs.image_version }})"
name: "Version ${{ github.ref_name }}"
body: >
Modpack Server container image: `${{ steps.config.outputs.image_path }}/${{ steps.config.outputs.image_name }}:${{ github.ref_name }}`
files: |-
@@ -89,7 +90,7 @@ jobs:
with:
api_key: ${{ secrets.TELEGRAM_API_KEY }}
chat_id: ${{ vars.TELEGRAM_CHAT_ID }}
message: >
message: |
Modpack **ATM 10** just got updated to version **${{ github.ref_name }}**!
Go to ${{ vars.SERVER_PUBLIC_URL }}/${{ github.repository }} to get instructions on how to update or

1
.gitignore vendored
View File

@@ -36,7 +36,6 @@ minecraft/logs
minecraft/modernfix/structureCache*
minecraft/saves
minecraft/screenshots
minecraft/shaderpacks
minecraft/simplebackups/
minecraft/TombManyGraves

View File

@@ -4,6 +4,7 @@ mod_loader_type: "NeoForge"
modpack:
curse_id: 925200 # ATM10
customizations:
server:
extra_files:
@@ -19,8 +20,24 @@ customizations:
- mod_id: 261725
name: "ItemZoom"
server: false
- mod_id: 245287
name: "Morph-o-Tool"
server: true
- mod_id: 240630
name: "Just Enough Resources (JER)"
server: true
# Ignored
- mod_id: 282001 # CC: Tweaked
server: false # Included via overrides
client: false
# Fix stupid Curse API
- mod_id: 391382
file_id: 6981252
name: "More Overlays Updated"
download_url: "https://mediafilez.forgecdn.net/files/6981/252/moreoverlays-1.24.2-mc1.21.1-neoforge.jar"
- mod_id: 433760
file_id: 8063412
name: "Not Enough Animations"
download_url: "https://mediafilez.forgecdn.net/files/8063/412/notenoughanimations-neoforge-1.12.3-mc1.21.1.jar"